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

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

--
-- Table structure for table `wp_chaty_contact_form_leads`
--

DROP TABLE IF EXISTS `wp_chaty_contact_form_leads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_chaty_contact_form_leads` (
  `id` bigint(11) NOT NULL AUTO_INCREMENT,
  `widget_id` int(11) DEFAULT NULL,
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `phone_number` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ref_page` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ip_address` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  `created_on` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_chaty_contact_form_leads`
--

LOCK TABLES `wp_chaty_contact_form_leads` WRITE;
/*!40000 ALTER TABLE `wp_chaty_contact_form_leads` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_chaty_contact_form_leads` 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,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_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_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 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 */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_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_mcw_coins`
--

DROP TABLE IF EXISTS `wp_mcw_coins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mcw_coins` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `img` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rank` int(5) NOT NULL,
  `price_usd` decimal(24,14) NOT NULL,
  `price_btc` decimal(10,8) NOT NULL,
  `volume_usd_24h` decimal(22,2) NOT NULL,
  `market_cap_usd` decimal(22,2) NOT NULL,
  `high_24h` decimal(20,10) NOT NULL,
  `low_24h` decimal(20,10) NOT NULL,
  `available_supply` decimal(22,2) NOT NULL,
  `total_supply` decimal(22,2) NOT NULL,
  `ath` decimal(20,10) NOT NULL,
  `ath_date` int(11) unsigned NOT NULL,
  `price_change_24h` decimal(20,10) NOT NULL,
  `percent_change_1h` decimal(7,2) NOT NULL,
  `percent_change_24h` decimal(7,2) NOT NULL,
  `percent_change_7d` decimal(7,2) NOT NULL,
  `percent_change_30d` decimal(7,2) NOT NULL,
  `weekly` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `weekly_expire` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `keywords` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom` text COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `slug` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mcw_coins`
--

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

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

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

--
-- Dumping data for table `wp_newsletter`
--

LOCK TABLES `wp_newsletter` WRITE;
/*!40000 ALTER TABLE `wp_newsletter` DISABLE KEYS */;
INSERT INTO `wp_newsletter` VALUES ('','sonus90@outlook.com','f6e4cb2cdf','','C',1,NULL,'2022-01-14 09:43:05',0,0,0,0,0,'','n',0,0,'','',0,'',0,'','','','',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','','','','','','','','','','','','','','','','','','','',1);
/*!40000 ALTER TABLE `wp_newsletter` ENABLE KEYS */;
UNLOCK TABLES;

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

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

--
-- Dumping data for table `wp_newsletter_emails`
--

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

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

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

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

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

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

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

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

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

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

DROP TABLE IF EXISTS `wp_newsletter_user_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_newsletter_user_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT '0',
  `ip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `source` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `data` longtext COLLATE utf8mb4_unicode_ci,
  `created` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_newsletter_user_logs`
--

LOCK TABLES `wp_newsletter_user_logs` WRITE;
/*!40000 ALTER TABLE `wp_newsletter_user_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_newsletter_user_logs` 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=5017 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','http://demoweblinks.in/ealoorconsultancy','yes'),(2,'home','http://demoweblinks.in/ealoorconsultancy','yes'),(3,'blogname','Ealoor Consultancy','yes'),(4,'blogdescription','Changing Lives','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@ealoorconsultancy.co.uk','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','','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','','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','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:350:{s:22:\"index.php/portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:52:\"index.php/portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:47:\"index.php/portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:39:\"index.php/portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:20:\"index.php/service/?$\";s:27:\"index.php?post_type=service\";s:50:\"index.php/service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:45:\"index.php/service/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:37:\"index.php/service/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=service&paged=$matches[1]\";s:23:\"index.php/case-study/?$\";s:30:\"index.php?post_type=case-study\";s:53:\"index.php/case-study/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:48:\"index.php/case-study/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:40:\"index.php/case-study/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=case-study&paged=$matches[1]\";s:20:\"index.php/courses/?$\";s:27:\"index.php?post_type=courses\";s:50:\"index.php/courses/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:45:\"index.php/courses/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:37:\"index.php/courses/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=courses&paged=$matches[1]\";s:19:\"index.php/header/?$\";s:26:\"index.php?post_type=header\";s:49:\"index.php/header/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=header&feed=$matches[1]\";s:44:\"index.php/header/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=header&feed=$matches[1]\";s:36:\"index.php/header/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=header&paged=$matches[1]\";s:19:\"index.php/footer/?$\";s:26:\"index.php?post_type=footer\";s:49:\"index.php/footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:44:\"index.php/footer/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:36:\"index.php/footer/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=footer&paged=$matches[1]\";s:25:\"index.php/ct-mega-menu/?$\";s:32:\"index.php?post_type=ct-mega-menu\";s:55:\"index.php/ct-mega-menu/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:50:\"index.php/ct-mega-menu/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:42:\"index.php/ct-mega-menu/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=ct-mega-menu&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s: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:30:\"index.php/whatsapp-accounts/?$\";s:37:\"index.php?post_type=whatsapp-accounts\";s:60:\"index.php/whatsapp-accounts/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=whatsapp-accounts&feed=$matches[1]\";s:55:\"index.php/whatsapp-accounts/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?post_type=whatsapp-accounts&feed=$matches[1]\";s:47:\"index.php/whatsapp-accounts/page/([0-9]{1,})/?$\";s:55:\"index.php?post_type=whatsapp-accounts&paged=$matches[1]\";s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"index.php/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:31:\"index.php/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:47:\"index.php/portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"index.php/portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"index.php/portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"index.php/portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"index.php/portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"index.php/portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"index.php/portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:40:\"index.php/portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:60:\"index.php/portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:55:\"index.php/portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:48:\"index.php/portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:55:\"index.php/portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:44:\"index.php/portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:36:\"index.php/portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"index.php/portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"index.php/portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"index.php/portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"index.php/portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"index.php/portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"index.php/service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"index.php/service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"index.php/service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"index.php/service/([^/]+)/embed/?$\";s:40:\"index.php?service=$matches[1]&embed=true\";s:38:\"index.php/service/([^/]+)/trackback/?$\";s:34:\"index.php?service=$matches[1]&tb=1\";s:58:\"index.php/service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:53:\"index.php/service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:46:\"index.php/service/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&paged=$matches[2]\";s:53:\"index.php/service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&cpage=$matches[2]\";s:42:\"index.php/service/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?service=$matches[1]&page=$matches[2]\";s:34:\"index.php/service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"index.php/service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"index.php/service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"index.php/case-study/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"index.php/case-study/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"index.php/case-study/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/case-study/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/case-study/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"index.php/case-study/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"index.php/case-study/([^/]+)/embed/?$\";s:43:\"index.php?case-study=$matches[1]&embed=true\";s:41:\"index.php/case-study/([^/]+)/trackback/?$\";s:37:\"index.php?case-study=$matches[1]&tb=1\";s:61:\"index.php/case-study/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:56:\"index.php/case-study/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:49:\"index.php/case-study/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&paged=$matches[2]\";s:56:\"index.php/case-study/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/case-study/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?case-study=$matches[1]&page=$matches[2]\";s:37:\"index.php/case-study/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/case-study/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/case-study/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/case-study/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/case-study/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/case-study/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"index.php/courses/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"index.php/courses/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"index.php/courses/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/courses/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"index.php/courses/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"index.php/courses/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"index.php/courses/([^/]+)/embed/?$\";s:40:\"index.php?courses=$matches[1]&embed=true\";s:38:\"index.php/courses/([^/]+)/trackback/?$\";s:34:\"index.php?courses=$matches[1]&tb=1\";s:58:\"index.php/courses/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:53:\"index.php/courses/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:46:\"index.php/courses/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&paged=$matches[2]\";s:53:\"index.php/courses/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&cpage=$matches[2]\";s:42:\"index.php/courses/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?courses=$matches[1]&page=$matches[2]\";s:34:\"index.php/courses/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"index.php/courses/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"index.php/courses/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/courses/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"index.php/courses/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"index.php/courses/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"index.php/header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"index.php/header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"index.php/header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"index.php/header/([^/]+)/embed/?$\";s:39:\"index.php?header=$matches[1]&embed=true\";s:37:\"index.php/header/([^/]+)/trackback/?$\";s:33:\"index.php?header=$matches[1]&tb=1\";s:57:\"index.php/header/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?header=$matches[1]&feed=$matches[2]\";s:52:\"index.php/header/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?header=$matches[1]&feed=$matches[2]\";s:45:\"index.php/header/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?header=$matches[1]&paged=$matches[2]\";s:52:\"index.php/header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?header=$matches[1]&cpage=$matches[2]\";s:41:\"index.php/header/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?header=$matches[1]&page=$matches[2]\";s:33:\"index.php/header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"index.php/header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"index.php/header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"index.php/header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"index.php/header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"index.php/header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"index.php/footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"index.php/footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"index.php/footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"index.php/footer/([^/]+)/embed/?$\";s:39:\"index.php?footer=$matches[1]&embed=true\";s:37:\"index.php/footer/([^/]+)/trackback/?$\";s:33:\"index.php?footer=$matches[1]&tb=1\";s:57:\"index.php/footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:52:\"index.php/footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:45:\"index.php/footer/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&paged=$matches[2]\";s:52:\"index.php/footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&cpage=$matches[2]\";s:41:\"index.php/footer/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?footer=$matches[1]&page=$matches[2]\";s:33:\"index.php/footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"index.php/footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"index.php/footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"index.php/footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"index.php/footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"index.php/footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"index.php/portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:64:\"index.php/portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:45:\"index.php/portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:57:\"index.php/portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:39:\"index.php/portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:67:\"index.php/service-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:62:\"index.php/service-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:43:\"index.php/service-category/([^/]+)/embed/?$\";s:49:\"index.php?service-category=$matches[1]&embed=true\";s:55:\"index.php/service-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?service-category=$matches[1]&paged=$matches[2]\";s:37:\"index.php/service-category/([^/]+)/?$\";s:38:\"index.php?service-category=$matches[1]\";s:70:\"index.php/case-study-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:65:\"index.php/case-study-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:46:\"index.php/case-study-category/([^/]+)/embed/?$\";s:52:\"index.php?case-study-category=$matches[1]&embed=true\";s:58:\"index.php/case-study-category/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?case-study-category=$matches[1]&paged=$matches[2]\";s:40:\"index.php/case-study-category/([^/]+)/?$\";s:41:\"index.php?case-study-category=$matches[1]\";s:50:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:80:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:56:\"index.php/ct-mega-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"index.php/ct-mega-menu/([^/]+)/embed/?$\";s:45:\"index.php?ct-mega-menu=$matches[1]&embed=true\";s:43:\"index.php/ct-mega-menu/([^/]+)/trackback/?$\";s:39:\"index.php?ct-mega-menu=$matches[1]&tb=1\";s:63:\"index.php/ct-mega-menu/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:58:\"index.php/ct-mega-menu/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:51:\"index.php/ct-mega-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&paged=$matches[2]\";s:58:\"index.php/ct-mega-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&cpage=$matches[2]\";s:47:\"index.php/ct-mega-menu/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&page=$matches[2]\";s:39:\"index.php/ct-mega-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/ct-mega-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"index.php/ct-mega-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/ct-mega-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/ct-mega-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/ct-mega-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:52:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:62:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:82:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:58:\"index.php/e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"index.php/e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:45:\"index.php/e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:53:\"index.php/e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:60:\"index.php/e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:49:\"index.php/e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:41:\"index.php/e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"index.php/e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"index.php/e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"index.php/e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"index.php/e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"index.php/e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/booked_appointments/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"index.php/booked_appointments/([^/]+)/embed/?$\";s:52:\"index.php?booked_appointments=$matches[1]&embed=true\";s:50:\"index.php/booked_appointments/([^/]+)/trackback/?$\";s:46:\"index.php?booked_appointments=$matches[1]&tb=1\";s:58:\"index.php/booked_appointments/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&paged=$matches[2]\";s:65:\"index.php/booked_appointments/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&cpage=$matches[2]\";s:54:\"index.php/booked_appointments/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?booked_appointments=$matches[1]&page=$matches[2]\";s:46:\"index.php/booked_appointments/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"index.php/booked_appointments/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"index.php/booked_appointments/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/booked_appointments/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/booked_appointments/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"index.php/booked_appointments/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:66:\"index.php/custom-calendar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:61:\"index.php/custom-calendar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:42:\"index.php/custom-calendar/([^/]+)/embed/?$\";s:56:\"index.php?booked_custom_calendars=$matches[1]&embed=true\";s:54:\"index.php/custom-calendar/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?booked_custom_calendars=$matches[1]&paged=$matches[2]\";s:36:\"index.php/custom-calendar/([^/]+)/?$\";s:45:\"index.php?booked_custom_calendars=$matches[1]\";s:48:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"index.php/mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"index.php/mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:41:\"index.php/mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:49:\"index.php/mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:56:\"index.php/mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:45:\"index.php/mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:37:\"index.php/mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:65:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:85:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:80:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:61:\"index.php/whatsapp-accounts/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"index.php/whatsapp-accounts/([^/]+)/embed/?$\";s:50:\"index.php?whatsapp-accounts=$matches[1]&embed=true\";s:48:\"index.php/whatsapp-accounts/([^/]+)/trackback/?$\";s:44:\"index.php?whatsapp-accounts=$matches[1]&tb=1\";s:68:\"index.php/whatsapp-accounts/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?whatsapp-accounts=$matches[1]&feed=$matches[2]\";s:63:\"index.php/whatsapp-accounts/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?whatsapp-accounts=$matches[1]&feed=$matches[2]\";s:56:\"index.php/whatsapp-accounts/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?whatsapp-accounts=$matches[1]&paged=$matches[2]\";s:63:\"index.php/whatsapp-accounts/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?whatsapp-accounts=$matches[1]&cpage=$matches[2]\";s:52:\"index.php/whatsapp-accounts/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?whatsapp-accounts=$matches[1]&page=$matches[2]\";s:44:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"index.php/whatsapp-accounts/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:18:\"index.php/embed/?$\";s:21:\"index.php?&embed=true\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:37:\"index.php/comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=9&cpage=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:27:\"index.php/comments/embed/?$\";s:21:\"index.php?&embed=true\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:30:\"index.php/search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([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:74:\"index.php/([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:55:\"index.php/([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:67:\"index.php/([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:49:\"index.php/([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:66:\"index.php/([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:61:\"index.php/([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:42:\"index.php/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:54:\"index.php/([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:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:29:\"index.php/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:98:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:74:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:71:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/.?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"index.php/(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:34:\"index.php/(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:17:\"booked/booked.php\";i:2;s:35:\"case-theme-core/case-theme-core.php\";i:3;s:39:\"case-theme-import/case-theme-import.php\";i:4;s:35:\"case-theme-user/case-theme-user.php\";i:5;s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:33:\"instagram-feed/instagram-feed.php\";i:9;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:10;s:65:\"massive-cryptocurrency-widgets/massive-cryptocurrency-widgets.php\";i:11;s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";i:12;s:21:\"newsletter/plugin.php\";i:13;s:23:\"revslider/revslider.php\";i:14;s:41:\"wordpress-importer/wordpress-importer.php\";i:16;s:24:\"wp-whatsapp/whatsapp.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','ealoor','yes'),(41,'stylesheet','ealoor','yes'),(42,'comment_registration','','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:6:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:3:{i:1;a:6:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:126:\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfo blanditiis praese. Ntium voluum deleniti atque. \";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:142:\"Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','9','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','9037','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','','yes'),(91,'admin_email_lifespan','1657702924','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','49752','yes'),(100,'wp_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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:24:\"edit_booked_appointments\";b:1;s:21:\"manage_booked_options\";b:1;s:29:\"manage_instagram_feed_options\";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;}}s:20:\"booked_booking_agent\";a:2:{s:4:\"name\";s:13:\"Booking Agent\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:24:\"edit_booked_appointments\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:3:{i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:6:\"text-1\";i:3;s:19:\"getintouch_widget-1\";i:4;s:18:\"cs_social_widget-1\";i:5;s:19:\"getintouch_widget-3\";}s:12:\"sidebar-blog\";a:2:{i:0;s:8:\"search-1\";i:1;s:17:\"ct_recent_posts-1\";}s:12:\"sidebar-page\";a:7:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:17:\"ct_recent_posts-2\";i:3;s:10:\"archives-2\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:19:\"newsletter_widget-2\";}s:14:\"sidebar-hidden\";a:4:{i:0;s:13:\"media_image-2\";i:1;s:6:\"text-2\";i:2;s:19:\"getintouch_widget-2\";i:3;s:18:\"cs_social_widget-2\";}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:17:{i:1652932633;a:1:{s:10:\"newsletter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"newsletter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1652932945;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:1652933369;a:1:{s:15:\"sbi_feed_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652947140;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1652950943;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:1652950945;a:2:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652950946;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:1652950963;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:1652950969;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:1652953288;a:1:{s:27:\"check_plugin_updates-booked\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652953291;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:1652953292;a:2:{s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652970188;a:1:{s:53:\"puc_cron_check_updates-massive-cryptocurrency-widgets\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653123743;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:1653262844;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1653285600;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:2:{i:2;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:2:{i:2;a:17:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:168;s:6:\"height\";i:87;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";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:8518;s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:2:{i:2;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:1553;i:1;i:1554;i:2;i:1552;i:3;i:1555;i:4;i:1556;i:5;i:1557;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:3:{i:1;a:1:{s:5:\"title\";s:0:\"\";}i:2;a:3:{s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:2:{i:2;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1642153028;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(147,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:28:\"info@ealoorconsultancy.co.uk\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649540265;}','no'),(153,'finished_updating_comment_type','1','yes'),(159,'current_theme','Ealoor','yes'),(160,'theme_mods_consultio-child','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1642152874;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:12:\"sidebar-blog\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}}}}','yes'),(161,'theme_switched','','yes'),(162,'elementor_cpt_support','a:9:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:9:\"portfolio\";i:3;s:7:\"service\";i:4;s:10:\"case-study\";i:5;s:6:\"footer\";i:6;s:12:\"ct-mega-menu\";i:7;s:7:\"courses\";i:8;s:6:\"header\";}','yes'),(167,'theme_mods_ealoor-child','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:7:\"primary\";i:22;s:9:\"menu-left\";i:23;s:10:\"menu-right\";i:24;s:9:\"secondary\";i:28;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1642167848;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";i:2;s:13:\"media_image-1\";i:3;s:6:\"text-1\";i:4;s:19:\"getintouch_widget-1\";i:5;s:18:\"cs_social_widget-1\";}s:12:\"sidebar-blog\";a:10:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-1\";i:4;s:12:\"categories-1\";i:5;s:17:\"ct_recent_posts-1\";i:6;s:10:\"archives-1\";i:7;s:15:\"media_gallery-1\";i:8;s:11:\"tag_cloud-1\";i:9;s:19:\"newsletter_widget-1\";}s:12:\"sidebar-page\";a:7:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:17:\"ct_recent_posts-2\";i:3;s:10:\"archives-2\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:19:\"newsletter_widget-2\";}s:14:\"sidebar-hidden\";a:6:{i:0;s:13:\"media_image-2\";i:1;s:6:\"text-2\";i:2;s:19:\"getintouch_widget-2\";i:3;s:18:\"cs_social_widget-2\";i:4;s:13:\"media_image-3\";i:5;s:19:\"getintouch_widget-3\";}}}}','yes'),(171,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.5\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1642153290;s:7:\"version\";s:5:\"5.5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(172,'elementor_active_kit','8174','yes'),(175,'sbi_statuses','a:6:{s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:13:\"first_install\";i:1642153366;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}s:12:\"data_manager\";a:2:{s:9:\"last_used\";i:1642486760;s:14:\"num_db_updates\";i:31;}s:24:\"support_legacy_shortcode\";b:0;s:12:\"feed_locator\";a:2:{s:10:\"last_check\";i:1652932630;s:11:\"initialized\";i:1644811803;}}','yes'),(176,'sbi_usage_tracking','a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}','yes'),(177,'newsletter_logger_secret','b76a4556','yes'),(179,'newsletter_main_first_install_time','1642153295','no'),(180,'newsletter_main','a:32:{s:11:\"return_path\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"sender_email\";s:20:\"newsletter@localhost\";s:11:\"sender_name\";s:18:\"Ealoor Consultancy\";s:6:\"editor\";i:0;s:13:\"scheduler_max\";i:100;s:9:\"phpmailer\";i:0;s:5:\"debug\";i:0;s:5:\"track\";i:1;s:3:\"css\";s:0:\"\";s:12:\"css_disabled\";i:0;s:2:\"ip\";s:0:\"\";s:4:\"page\";i:9;s:19:\"disable_cron_notice\";i:0;s:13:\"do_shortcodes\";i:0;s:11:\"header_logo\";s:0:\"\";s:12:\"header_title\";s:18:\"Ealoor Consultancy\";s:10:\"header_sub\";s:27:\"Just another WordPress site\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(181,'newsletter_main_info','a:17:{s:11:\"header_logo\";a:1:{s:2:\"id\";i:0;}s:12:\"header_title\";s:18:\"Ealoor Consultancy\";s:10:\"header_sub\";s:27:\"Just another WordPress site\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(182,'newsletter_main_smtp','a:7:{s:7:\"enabled\";i:0;s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"port\";i:25;s:6:\"secure\";s:0:\"\";s:12:\"ssl_insecure\";i:0;}','yes'),(183,'newsletter_main_version','1.6.7','yes'),(184,'newsletter_system_first_install_time','1642153298','no'),(185,'newsletter_system','a:0:{}','yes'),(186,'newsletter_system_version','1.1.0','yes'),(187,'newsletter_subscription_first_install_time','1642153298','no'),(188,'newsletter','a:14:{s:14:\"noconfirmation\";i:1;s:12:\"notify_email\";s:19:\"sonus90@outlook.com\";s:8:\"multiple\";i:1;s:6:\"notify\";i:0;s:10:\"error_text\";s:87:\"<p>This email address is already subscribed, please contact the site administrator.</p>\";s:17:\"subscription_text\";s:19:\"{subscription_form}\";s:17:\"confirmation_text\";s:104:\"<p>A confirmation email is on the way. Follow the instructions and check the spam folder. Thank you.</p>\";s:20:\"confirmation_subject\";s:32:\"Please confirm your subscription\";s:21:\"confirmation_tracking\";s:0:\"\";s:20:\"confirmation_message\";s:94:\"<p>Please confirm your subscription <a href=\"{subscription_confirm_url}\">clicking here</a></p>\";s:14:\"confirmed_text\";s:43:\"<p>Your subscription has been confirmed</p>\";s:17:\"confirmed_subject\";s:7:\"Welcome\";s:17:\"confirmed_message\";s:130:\"<p>This message confirms your subscription to our newsletter. Thank you!</p><hr><p><a href=\"{profile_url}\">Change your profile</p>\";s:18:\"confirmed_tracking\";s:0:\"\";}','yes'),(189,'newsletter_subscription_lists','a:240:{s:6:\"list_1\";s:0:\"\";s:13:\"list_1_status\";i:0;s:14:\"list_1_checked\";i:0;s:13:\"list_1_forced\";i:0;s:19:\"list_1_subscription\";i:0;s:14:\"list_1_profile\";i:0;s:6:\"list_2\";s:0:\"\";s:13:\"list_2_status\";i:0;s:14:\"list_2_checked\";i:0;s:13:\"list_2_forced\";i:0;s:19:\"list_2_subscription\";i:0;s:14:\"list_2_profile\";i:0;s:6:\"list_3\";s:0:\"\";s:13:\"list_3_status\";i:0;s:14:\"list_3_checked\";i:0;s:13:\"list_3_forced\";i:0;s:19:\"list_3_subscription\";i:0;s:14:\"list_3_profile\";i:0;s:6:\"list_4\";s:0:\"\";s:13:\"list_4_status\";i:0;s:14:\"list_4_checked\";i:0;s:13:\"list_4_forced\";i:0;s:19:\"list_4_subscription\";i:0;s:14:\"list_4_profile\";i:0;s:6:\"list_5\";s:0:\"\";s:13:\"list_5_status\";i:0;s:14:\"list_5_checked\";i:0;s:13:\"list_5_forced\";i:0;s:19:\"list_5_subscription\";i:0;s:14:\"list_5_profile\";i:0;s:6:\"list_6\";s:0:\"\";s:13:\"list_6_status\";i:0;s:14:\"list_6_checked\";i:0;s:13:\"list_6_forced\";i:0;s:19:\"list_6_subscription\";i:0;s:14:\"list_6_profile\";i:0;s:6:\"list_7\";s:0:\"\";s:13:\"list_7_status\";i:0;s:14:\"list_7_checked\";i:0;s:13:\"list_7_forced\";i:0;s:19:\"list_7_subscription\";i:0;s:14:\"list_7_profile\";i:0;s:6:\"list_8\";s:0:\"\";s:13:\"list_8_status\";i:0;s:14:\"list_8_checked\";i:0;s:13:\"list_8_forced\";i:0;s:19:\"list_8_subscription\";i:0;s:14:\"list_8_profile\";i:0;s:6:\"list_9\";s:0:\"\";s:13:\"list_9_status\";i:0;s:14:\"list_9_checked\";i:0;s:13:\"list_9_forced\";i:0;s:19:\"list_9_subscription\";i:0;s:14:\"list_9_profile\";i:0;s:7:\"list_10\";s:0:\"\";s:14:\"list_10_status\";i:0;s:15:\"list_10_checked\";i:0;s:14:\"list_10_forced\";i:0;s:20:\"list_10_subscription\";i:0;s:15:\"list_10_profile\";i:0;s:7:\"list_11\";s:0:\"\";s:14:\"list_11_status\";i:0;s:15:\"list_11_checked\";i:0;s:14:\"list_11_forced\";i:0;s:20:\"list_11_subscription\";i:0;s:15:\"list_11_profile\";i:0;s:7:\"list_12\";s:0:\"\";s:14:\"list_12_status\";i:0;s:15:\"list_12_checked\";i:0;s:14:\"list_12_forced\";i:0;s:20:\"list_12_subscription\";i:0;s:15:\"list_12_profile\";i:0;s:7:\"list_13\";s:0:\"\";s:14:\"list_13_status\";i:0;s:15:\"list_13_checked\";i:0;s:14:\"list_13_forced\";i:0;s:20:\"list_13_subscription\";i:0;s:15:\"list_13_profile\";i:0;s:7:\"list_14\";s:0:\"\";s:14:\"list_14_status\";i:0;s:15:\"list_14_checked\";i:0;s:14:\"list_14_forced\";i:0;s:20:\"list_14_subscription\";i:0;s:15:\"list_14_profile\";i:0;s:7:\"list_15\";s:0:\"\";s:14:\"list_15_status\";i:0;s:15:\"list_15_checked\";i:0;s:14:\"list_15_forced\";i:0;s:20:\"list_15_subscription\";i:0;s:15:\"list_15_profile\";i:0;s:7:\"list_16\";s:0:\"\";s:14:\"list_16_status\";i:0;s:15:\"list_16_checked\";i:0;s:14:\"list_16_forced\";i:0;s:20:\"list_16_subscription\";i:0;s:15:\"list_16_profile\";i:0;s:7:\"list_17\";s:0:\"\";s:14:\"list_17_status\";i:0;s:15:\"list_17_checked\";i:0;s:14:\"list_17_forced\";i:0;s:20:\"list_17_subscription\";i:0;s:15:\"list_17_profile\";i:0;s:7:\"list_18\";s:0:\"\";s:14:\"list_18_status\";i:0;s:15:\"list_18_checked\";i:0;s:14:\"list_18_forced\";i:0;s:20:\"list_18_subscription\";i:0;s:15:\"list_18_profile\";i:0;s:7:\"list_19\";s:0:\"\";s:14:\"list_19_status\";i:0;s:15:\"list_19_checked\";i:0;s:14:\"list_19_forced\";i:0;s:20:\"list_19_subscription\";i:0;s:15:\"list_19_profile\";i:0;s:7:\"list_20\";s:0:\"\";s:14:\"list_20_status\";i:0;s:15:\"list_20_checked\";i:0;s:14:\"list_20_forced\";i:0;s:20:\"list_20_subscription\";i:0;s:15:\"list_20_profile\";i:0;s:7:\"list_21\";s:0:\"\";s:14:\"list_21_status\";i:0;s:15:\"list_21_checked\";i:0;s:14:\"list_21_forced\";i:0;s:20:\"list_21_subscription\";i:0;s:15:\"list_21_profile\";i:0;s:7:\"list_22\";s:0:\"\";s:14:\"list_22_status\";i:0;s:15:\"list_22_checked\";i:0;s:14:\"list_22_forced\";i:0;s:20:\"list_22_subscription\";i:0;s:15:\"list_22_profile\";i:0;s:7:\"list_23\";s:0:\"\";s:14:\"list_23_status\";i:0;s:15:\"list_23_checked\";i:0;s:14:\"list_23_forced\";i:0;s:20:\"list_23_subscription\";i:0;s:15:\"list_23_profile\";i:0;s:7:\"list_24\";s:0:\"\";s:14:\"list_24_status\";i:0;s:15:\"list_24_checked\";i:0;s:14:\"list_24_forced\";i:0;s:20:\"list_24_subscription\";i:0;s:15:\"list_24_profile\";i:0;s:7:\"list_25\";s:0:\"\";s:14:\"list_25_status\";i:0;s:15:\"list_25_checked\";i:0;s:14:\"list_25_forced\";i:0;s:20:\"list_25_subscription\";i:0;s:15:\"list_25_profile\";i:0;s:7:\"list_26\";s:0:\"\";s:14:\"list_26_status\";i:0;s:15:\"list_26_checked\";i:0;s:14:\"list_26_forced\";i:0;s:20:\"list_26_subscription\";i:0;s:15:\"list_26_profile\";i:0;s:7:\"list_27\";s:0:\"\";s:14:\"list_27_status\";i:0;s:15:\"list_27_checked\";i:0;s:14:\"list_27_forced\";i:0;s:20:\"list_27_subscription\";i:0;s:15:\"list_27_profile\";i:0;s:7:\"list_28\";s:0:\"\";s:14:\"list_28_status\";i:0;s:15:\"list_28_checked\";i:0;s:14:\"list_28_forced\";i:0;s:20:\"list_28_subscription\";i:0;s:15:\"list_28_profile\";i:0;s:7:\"list_29\";s:0:\"\";s:14:\"list_29_status\";i:0;s:15:\"list_29_checked\";i:0;s:14:\"list_29_forced\";i:0;s:20:\"list_29_subscription\";i:0;s:15:\"list_29_profile\";i:0;s:7:\"list_30\";s:0:\"\";s:14:\"list_30_status\";i:0;s:15:\"list_30_checked\";i:0;s:14:\"list_30_forced\";i:0;s:20:\"list_30_subscription\";i:0;s:15:\"list_30_profile\";i:0;s:7:\"list_31\";s:0:\"\";s:14:\"list_31_status\";i:0;s:15:\"list_31_checked\";i:0;s:14:\"list_31_forced\";i:0;s:20:\"list_31_subscription\";i:0;s:15:\"list_31_profile\";i:0;s:7:\"list_32\";s:0:\"\";s:14:\"list_32_status\";i:0;s:15:\"list_32_checked\";i:0;s:14:\"list_32_forced\";i:0;s:20:\"list_32_subscription\";i:0;s:15:\"list_32_profile\";i:0;s:7:\"list_33\";s:0:\"\";s:14:\"list_33_status\";i:0;s:15:\"list_33_checked\";i:0;s:14:\"list_33_forced\";i:0;s:20:\"list_33_subscription\";i:0;s:15:\"list_33_profile\";i:0;s:7:\"list_34\";s:0:\"\";s:14:\"list_34_status\";i:0;s:15:\"list_34_checked\";i:0;s:14:\"list_34_forced\";i:0;s:20:\"list_34_subscription\";i:0;s:15:\"list_34_profile\";i:0;s:7:\"list_35\";s:0:\"\";s:14:\"list_35_status\";i:0;s:15:\"list_35_checked\";i:0;s:14:\"list_35_forced\";i:0;s:20:\"list_35_subscription\";i:0;s:15:\"list_35_profile\";i:0;s:7:\"list_36\";s:0:\"\";s:14:\"list_36_status\";i:0;s:15:\"list_36_checked\";i:0;s:14:\"list_36_forced\";i:0;s:20:\"list_36_subscription\";i:0;s:15:\"list_36_profile\";i:0;s:7:\"list_37\";s:0:\"\";s:14:\"list_37_status\";i:0;s:15:\"list_37_checked\";i:0;s:14:\"list_37_forced\";i:0;s:20:\"list_37_subscription\";i:0;s:15:\"list_37_profile\";i:0;s:7:\"list_38\";s:0:\"\";s:14:\"list_38_status\";i:0;s:15:\"list_38_checked\";i:0;s:14:\"list_38_forced\";i:0;s:20:\"list_38_subscription\";i:0;s:15:\"list_38_profile\";i:0;s:7:\"list_39\";s:0:\"\";s:14:\"list_39_status\";i:0;s:15:\"list_39_checked\";i:0;s:14:\"list_39_forced\";i:0;s:20:\"list_39_subscription\";i:0;s:15:\"list_39_profile\";i:0;s:7:\"list_40\";s:0:\"\";s:14:\"list_40_status\";i:0;s:15:\"list_40_checked\";i:0;s:14:\"list_40_forced\";i:0;s:20:\"list_40_subscription\";i:0;s:15:\"list_40_profile\";i:0;}','yes'),(190,'newsletter_subscription_template','a:1:{s:8:\"template\";s:2365:\"<!DOCTYPE html>\n<html>\n    <head>\n        <!-- General styles, not used by all email clients -->\n        <style type=\"text/css\" media=\"all\">\n            a {\n                text-decoration: none;\n                color: #0088cc;\n            }\n            hr {\n                border-top: 1px solid #999;\n            }\n        </style>\n    </head>\n\n    <!-- KEEP THE LAYOUT SIMPLE: THOSE ARE SERVICE MESSAGES. -->\n    <body style=\"margin: 0; padding: 0;\">\n\n        <!-- Top title with dark background -->\n        <table style=\"background-color: #444; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\n            <tr>\n                <td style=\"padding: 20px; text-align: center; font-family: sans-serif; color: #fff; font-size: 28px\">\n                    {blog_title}\n                </td>\n            </tr>\n        </table>\n\n        <!-- Main table 100% wide with background color #eee -->    \n        <table style=\"background-color: #eee; width: 100%;\">\n            <tr>\n                <td align=\"center\" style=\"padding: 15px;\">\n\n                    <!-- Content table with backgdound color #fff, width 500px -->\n                    <table style=\"background-color: #fff; max-width: 600px; width: 100%; border: 1px solid #ddd;\">\n                        <tr>\n                            <td style=\"padding: 15px; color: #333; font-size: 16px; font-family: sans-serif\">\n                                <!-- The \"message\" tag below is replaced with one of confirmation, welcome or goodbye messages -->\n                                <!-- Messages content can be configured on Newsletter List Building panels --> \n\n                                {message}\n\n                                <hr>\n                                <!-- Signature if not already added to single messages (surround with <p>) -->\n                                <p>\n                                    <small>\n                                        <a href=\"{blog_url}\">{blog_url}</a><br>\n                                        {company_name}<br>\n                                        {company_address}\n                                    </small>\n                                </p>\n                                \n\n                            </td>\n                        </tr>\n                    </table>\n\n                </td>\n            </tr>\n        </table>\n\n    </body>\n</html>\";}','yes'),(191,'newsletter_profile','a:180:{s:5:\"email\";s:5:\"Email\";s:11:\"email_error\";s:28:\"Email address is not correct\";s:4:\"name\";s:23:\"First name or full name\";s:11:\"name_status\";i:0;s:10:\"name_rules\";i:0;s:7:\"surname\";s:9:\"Last name\";s:14:\"surname_status\";i:0;s:10:\"sex_status\";i:0;s:3:\"sex\";s:3:\"I\'m\";s:7:\"privacy\";s:44:\"By continuing, you accept the privacy policy\";s:14:\"privacy_status\";i:0;s:11:\"privacy_url\";s:0:\"\";s:18:\"privacy_use_wp_url\";i:0;s:9:\"subscribe\";s:9:\"Subscribe\";s:12:\"title_female\";s:3:\"Ms.\";s:10:\"title_male\";s:3:\"Mr.\";s:10:\"title_none\";s:4:\"Dear\";s:8:\"sex_male\";s:3:\"Man\";s:10:\"sex_female\";s:5:\"Woman\";s:8:\"sex_none\";s:13:\"Not specified\";s:16:\"profile_1_status\";i:0;s:9:\"profile_1\";s:0:\"\";s:14:\"profile_1_type\";s:4:\"text\";s:21:\"profile_1_placeholder\";s:0:\"\";s:15:\"profile_1_rules\";i:0;s:17:\"profile_1_options\";s:0:\"\";s:16:\"profile_2_status\";i:0;s:9:\"profile_2\";s:0:\"\";s:14:\"profile_2_type\";s:4:\"text\";s:21:\"profile_2_placeholder\";s:0:\"\";s:15:\"profile_2_rules\";i:0;s:17:\"profile_2_options\";s:0:\"\";s:16:\"profile_3_status\";i:0;s:9:\"profile_3\";s:0:\"\";s:14:\"profile_3_type\";s:4:\"text\";s:21:\"profile_3_placeholder\";s:0:\"\";s:15:\"profile_3_rules\";i:0;s:17:\"profile_3_options\";s:0:\"\";s:16:\"profile_4_status\";i:0;s:9:\"profile_4\";s:0:\"\";s:14:\"profile_4_type\";s:4:\"text\";s:21:\"profile_4_placeholder\";s:0:\"\";s:15:\"profile_4_rules\";i:0;s:17:\"profile_4_options\";s:0:\"\";s:16:\"profile_5_status\";i:0;s:9:\"profile_5\";s:0:\"\";s:14:\"profile_5_type\";s:4:\"text\";s:21:\"profile_5_placeholder\";s:0:\"\";s:15:\"profile_5_rules\";i:0;s:17:\"profile_5_options\";s:0:\"\";s:16:\"profile_6_status\";i:0;s:9:\"profile_6\";s:0:\"\";s:14:\"profile_6_type\";s:4:\"text\";s:21:\"profile_6_placeholder\";s:0:\"\";s:15:\"profile_6_rules\";i:0;s:17:\"profile_6_options\";s:0:\"\";s:16:\"profile_7_status\";i:0;s:9:\"profile_7\";s:0:\"\";s:14:\"profile_7_type\";s:4:\"text\";s:21:\"profile_7_placeholder\";s:0:\"\";s:15:\"profile_7_rules\";i:0;s:17:\"profile_7_options\";s:0:\"\";s:16:\"profile_8_status\";i:0;s:9:\"profile_8\";s:0:\"\";s:14:\"profile_8_type\";s:4:\"text\";s:21:\"profile_8_placeholder\";s:0:\"\";s:15:\"profile_8_rules\";i:0;s:17:\"profile_8_options\";s:0:\"\";s:16:\"profile_9_status\";i:0;s:9:\"profile_9\";s:0:\"\";s:14:\"profile_9_type\";s:4:\"text\";s:21:\"profile_9_placeholder\";s:0:\"\";s:15:\"profile_9_rules\";i:0;s:17:\"profile_9_options\";s:0:\"\";s:17:\"profile_10_status\";i:0;s:10:\"profile_10\";s:0:\"\";s:15:\"profile_10_type\";s:4:\"text\";s:22:\"profile_10_placeholder\";s:0:\"\";s:16:\"profile_10_rules\";i:0;s:18:\"profile_10_options\";s:0:\"\";s:17:\"profile_11_status\";i:0;s:10:\"profile_11\";s:0:\"\";s:15:\"profile_11_type\";s:4:\"text\";s:22:\"profile_11_placeholder\";s:0:\"\";s:16:\"profile_11_rules\";i:0;s:18:\"profile_11_options\";s:0:\"\";s:17:\"profile_12_status\";i:0;s:10:\"profile_12\";s:0:\"\";s:15:\"profile_12_type\";s:4:\"text\";s:22:\"profile_12_placeholder\";s:0:\"\";s:16:\"profile_12_rules\";i:0;s:18:\"profile_12_options\";s:0:\"\";s:17:\"profile_13_status\";i:0;s:10:\"profile_13\";s:0:\"\";s:15:\"profile_13_type\";s:4:\"text\";s:22:\"profile_13_placeholder\";s:0:\"\";s:16:\"profile_13_rules\";i:0;s:18:\"profile_13_options\";s:0:\"\";s:17:\"profile_14_status\";i:0;s:10:\"profile_14\";s:0:\"\";s:15:\"profile_14_type\";s:4:\"text\";s:22:\"profile_14_placeholder\";s:0:\"\";s:16:\"profile_14_rules\";i:0;s:18:\"profile_14_options\";s:0:\"\";s:17:\"profile_15_status\";i:0;s:10:\"profile_15\";s:0:\"\";s:15:\"profile_15_type\";s:4:\"text\";s:22:\"profile_15_placeholder\";s:0:\"\";s:16:\"profile_15_rules\";i:0;s:18:\"profile_15_options\";s:0:\"\";s:17:\"profile_16_status\";i:0;s:10:\"profile_16\";s:0:\"\";s:15:\"profile_16_type\";s:4:\"text\";s:22:\"profile_16_placeholder\";s:0:\"\";s:16:\"profile_16_rules\";i:0;s:18:\"profile_16_options\";s:0:\"\";s:17:\"profile_17_status\";i:0;s:10:\"profile_17\";s:0:\"\";s:15:\"profile_17_type\";s:4:\"text\";s:22:\"profile_17_placeholder\";s:0:\"\";s:16:\"profile_17_rules\";i:0;s:18:\"profile_17_options\";s:0:\"\";s:17:\"profile_18_status\";i:0;s:10:\"profile_18\";s:0:\"\";s:15:\"profile_18_type\";s:4:\"text\";s:22:\"profile_18_placeholder\";s:0:\"\";s:16:\"profile_18_rules\";i:0;s:18:\"profile_18_options\";s:0:\"\";s:17:\"profile_19_status\";i:0;s:10:\"profile_19\";s:0:\"\";s:15:\"profile_19_type\";s:4:\"text\";s:22:\"profile_19_placeholder\";s:0:\"\";s:16:\"profile_19_rules\";i:0;s:18:\"profile_19_options\";s:0:\"\";s:17:\"profile_20_status\";i:0;s:10:\"profile_20\";s:0:\"\";s:15:\"profile_20_type\";s:4:\"text\";s:22:\"profile_20_placeholder\";s:0:\"\";s:16:\"profile_20_rules\";i:0;s:18:\"profile_20_options\";s:0:\"\";s:13:\"list_1_forced\";i:0;s:13:\"list_2_forced\";i:0;s:13:\"list_3_forced\";i:0;s:13:\"list_4_forced\";i:0;s:13:\"list_5_forced\";i:0;s:13:\"list_6_forced\";i:0;s:13:\"list_7_forced\";i:0;s:13:\"list_8_forced\";i:0;s:13:\"list_9_forced\";i:0;s:14:\"list_10_forced\";i:0;s:14:\"list_11_forced\";i:0;s:14:\"list_12_forced\";i:0;s:14:\"list_13_forced\";i:0;s:14:\"list_14_forced\";i:0;s:14:\"list_15_forced\";i:0;s:14:\"list_16_forced\";i:0;s:14:\"list_17_forced\";i:0;s:14:\"list_18_forced\";i:0;s:14:\"list_19_forced\";i:0;s:14:\"list_20_forced\";i:0;s:14:\"list_21_forced\";i:0;s:14:\"list_22_forced\";i:0;s:14:\"list_23_forced\";i:0;s:14:\"list_24_forced\";i:0;s:14:\"list_25_forced\";i:0;s:14:\"list_26_forced\";i:0;s:14:\"list_27_forced\";i:0;s:14:\"list_28_forced\";i:0;s:14:\"list_29_forced\";i:0;s:14:\"list_30_forced\";i:0;s:14:\"list_31_forced\";i:0;s:14:\"list_32_forced\";i:0;s:14:\"list_33_forced\";i:0;s:14:\"list_34_forced\";i:0;s:14:\"list_35_forced\";i:0;s:14:\"list_36_forced\";i:0;s:14:\"list_37_forced\";i:0;s:14:\"list_38_forced\";i:0;s:14:\"list_39_forced\";i:0;s:14:\"list_40_forced\";i:0;}','yes'),(192,'newsletter_subscription_antibot','a:6:{s:12:\"ip_blacklist\";a:0:{}s:17:\"address_blacklist\";a:0:{}s:9:\"antiflood\";i:60;s:7:\"akismet\";i:0;s:7:\"captcha\";i:0;s:8:\"disabled\";i:0;}','yes'),(193,'newsletter_subscription_version','2.2.7','yes'),(194,'newsletter_unsubscription_first_install_time','1642153299','no'),(195,'newsletter_unsubscription','a:6:{s:16:\"unsubscribe_text\";s:103:\"<p>Please confirm you want to unsubscribe <a href=\"{unsubscription_confirm_url}\">clicking here</a>.</p>\";s:10:\"error_text\";s:99:\"<p>Subscriber not found, it probably has already been removed. No further actions are required.</p>\";s:17:\"unsubscribed_text\";s:124:\"<p>Your subscription has been deleted. If that was an error you can <a href=\"{reactivate_url}\">subscribe again here</a>.</p>\";s:20:\"unsubscribed_subject\";s:7:\"Goodbye\";s:20:\"unsubscribed_message\";s:87:\"<p>This message confirms that you have unsubscribed from our newsletter. Thank you.</p>\";s:16:\"reactivated_text\";s:46:\"<p>Your subscription has been reactivated.</p>\";}','yes'),(196,'newsletter_unsubscription_version','1.0.3','yes'),(197,'newsletter_profile_first_install_time','1642153300','no'),(198,'newsletter_profile_main','a:8:{s:4:\"text\";s:188:\"{profile_form}\n    <p>If you change your email address, a confirmation email will be sent to activate it.</p>\n    <p><a href=\"{unsubscription_confirm_url}\">Cancel your subscription</a></p>\";s:13:\"email_changed\";s:81:\"Your email has been changed, an activation email has been sent with instructions.\";s:5:\"error\";s:42:\"Your email is not valid or already in use.\";s:10:\"save_label\";s:4:\"Save\";s:13:\"privacy_label\";s:21:\"Read our privacy note\";s:5:\"saved\";s:14:\"Profile saved.\";s:18:\"export_newsletters\";i:0;s:3:\"url\";s:0:\"\";}','yes'),(199,'newsletter_profile_version','1.1.0','yes'),(200,'newsletter_emails_first_install_time','1642153300','no'),(201,'newsletter_emails','a:1:{s:5:\"theme\";s:7:\"default\";}','yes'),(202,'newsletter_emails_theme_default','a:0:{}','no'),(203,'newsletter_emails_version','1.1.5','yes'),(204,'newsletter_users_first_install_time','1642153301','no'),(205,'newsletter_users','a:0:{}','yes'),(206,'newsletter_users_version','1.3.0','yes'),(207,'newsletter_statistics_first_install_time','1642153302','no'),(208,'newsletter_statistics','a:1:{s:3:\"key\";s:32:\"b3752aa5e61e10ff357f44a1cab087d4\";}','yes'),(209,'newsletter_statistics_version','1.2.8','yes'),(210,'newsletter_install_time','1642153303','no'),(211,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(212,'revslider_server_refresh','1652475663','yes'),(213,'revslider-update-check-short','1648545436','yes'),(214,'revslider-connection','1','yes'),(215,'revslider-update-hash','b27ca5c7b0005a4a78914ef8d2c0f8be','yes'),(216,'revslider-latest-version','6.5.19','yes'),(217,'revslider-stable-version','4.2.0','yes'),(218,'revslider-notices','a:3:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:546:\"<div style=\"display: block; background: #fff;text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:537:\"<div style=\"display: block; background: #fff;text-align: center; height: 300px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 920px; height: 300px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"//updates.themepunch-ext-a.tools//banners/videobanner_premium2.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:402:\"<div style=\"display: block; background:#fff;text-align: center; height: 250px;\"><a href=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; height: 250px; display: inline-block;\"  src=\"//updates.themepunch-ext-a.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-02\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:1;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(219,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(220,'rs-addons-counter','32','yes'),(221,'revslider-addons','O:8:\"stdClass\":32:{s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.3.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"404\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"410\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"409\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2021-08-09\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"383\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-07-17\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"396\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2021-10-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-11-03\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-05-28\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(222,'revslider-library-check','1647596231','yes'),(223,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(224,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(225,'revslider-templates-check','1648545437','yes'),(226,'revslider-templates-hash','038a7ea22b3183298125c12e3e892399','yes'),(227,'rs-templates-new','','no');
INSERT INTO `wp_options` VALUES (228,'rs-templates','a:3:{s:4:\"hash\";s:32:\"99bb713bf220a63bb23d80d34c07a5c7\";s:6:\"slider\";a:599:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:22:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:22:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:25:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:22:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:22:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:25:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:25:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:25:\"Minimal Portfolio Website\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-website\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:286;a:25:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:287;a:25:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:25:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:25:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:312;a:25:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:25:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:25:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:317;a:25:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:25:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:25:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:25:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:25:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:25:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:25:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:25:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:22:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:22:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:367;a:25:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:25:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:25:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:25:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:25:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:25:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:25:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:25:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:25:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:25:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:25:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:25:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:25:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:25:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:25:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:25:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:25:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:22:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:25:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:25:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:25:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:25:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-scroll-video/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:484;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:508;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:514;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:516;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:517;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:519;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:349:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:25:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:522;a:25:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:523;a:25:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:524;a:22:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:525;a:22:{s:2:\"id\";s:3:\"561\";s:5:\"title\";s:31:\"Coffee Shop Split Screen Slider\";s:5:\"alias\";s:15:\"coffee-flavours\";s:3:\"zip\";s:19:\"coffee-flavours.zip\";s:3:\"uid\";s:32:\"63726447a6a614d8f53fbf6024fd3033\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/coffee-shop-split-screen-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:09:52\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:526;a:22:{s:2:\"id\";s:3:\"562\";s:5:\"title\";s:32:\"Modern Portfolio Showreel Slider\";s:5:\"alias\";s:15:\"showreel-slider\";s:3:\"zip\";s:19:\"showreel-slider.zip\";s:3:\"uid\";s:32:\"bced29a585e67153a1ed7608ddcdb69d\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/modern-portfolio-showreel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:216:\"<span class=\"ttm_content\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:14:43\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:527;a:22:{s:2:\"id\";s:3:\"563\";s:5:\"title\";s:23:\"Visual Art Forms Slider\";s:5:\"alias\";s:16:\"visual-art-forms\";s:3:\"zip\";s:20:\"visual-art-forms.zip\";s:3:\"uid\";s:32:\"4d57a5abf20bc4a615fe30837ac3ce1a\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/visual-art-forms-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:180:\"<span class=\"ttm_content\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-06-11 09:18:19\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:528;a:22:{s:2:\"id\";s:3:\"564\";s:5:\"title\";s:22:\"Background Effect Hero\";s:5:\"alias\";s:14:\"bg-effect-hero\";s:3:\"zip\";s:18:\"bg-effect-hero.zip\";s:3:\"uid\";s:32:\"55bb0fa5ac66ad84423fa704b701e1df\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";s:7:\"preview\";s:77:\"https://www.sliderrevolution.com/templates/background-effect-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:224:\"<span class=\"ttm_content\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br />\r\nthis slider / hero module is exactly what you were looking for.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:697:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:45:50\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:529;a:22:{s:2:\"id\";s:3:\"565\";s:5:\"title\";s:26:\"Cyber Glitch Effect Slider\";s:5:\"alias\";s:9:\"cyberfunk\";s:3:\"zip\";s:13:\"cyberfunk.zip\";s:3:\"uid\";s:32:\"44fdc7e13074bdc46500972cd708c739\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/cyber-glitch-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br />\r\nglitch effect transitions and a typewriter effect.<br />\r\nThe custom navigation skin can be customized easily!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:355:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:51:54\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:530;a:22:{s:2:\"id\";s:3:\"566\";s:5:\"title\";s:30:\"Motion Blur Portfolio Showcase\";s:5:\"alias\";s:21:\"motion-blur-portfolio\";s:3:\"zip\";s:25:\"motion-blur-portfolio.zip\";s:3:\"uid\";s:32:\"28086bed49cfb241c7d40f91cd64e970\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";s:7:\"preview\";s:74:\"https://www.sliderrevolution.com/templates/motion-blur-portfolio-showcase/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:238:\"<span class=\"ttm_content\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br />\r\nPacked with a logo and menu its ready to visualize your wildest ideas.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 10:56:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:531;a:22:{s:2:\"id\";s:3:\"567\";s:5:\"title\";s:25:\"Portal Effect Hero Slider\";s:5:\"alias\";s:18:\"portal-effect-hero\";s:3:\"zip\";s:22:\"portal-effect-hero.zip\";s:3:\"uid\";s:32:\"87f5b64e44dc5b75bc1c7adbeb287ee9\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/portal-effect-hero-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:282:\"<span class=\"ttm_content\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br />\r\nThe design already includes elements like a logo, menu and social media icons.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:08:18\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:532;a:22:{s:2:\"id\";s:3:\"568\";s:5:\"title\";s:22:\"Winery Timeline Slider\";s:5:\"alias\";s:15:\"winery-timeline\";s:3:\"zip\";s:19:\"winery-timeline.zip\";s:3:\"uid\";s:32:\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/winery-timeline-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:247:\"<span class=\"ttm_content\">Tell your own story with this fabulous timeline slider.<br />\r\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-08-09 11:13:39\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:533;a:25:{s:2:\"id\";s:3:\"569\";s:5:\"title\";s:25:\"Smart Living One Pager V1\";s:5:\"alias\";s:25:\"smart-living-one-pager-v1\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:33:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:534;a:25:{s:2:\"id\";s:3:\"570\";s:5:\"title\";s:25:\"Smart Living One Pager V2\";s:5:\"alias\";s:25:\"smart-living-one-pager-v2\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v2\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:38:21\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:535;a:25:{s:2:\"id\";s:3:\"571\";s:5:\"title\";s:25:\"Smart Living One Pager V3\";s:5:\"alias\";s:25:\"smart-living-one-pager-v3\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"smart-living-one-pager-v3\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:39:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:536;a:25:{s:2:\"id\";s:3:\"572\";s:5:\"title\";s:6:\"Menu 1\";s:5:\"alias\";s:6:\"menu-1\";s:3:\"zip\";s:16:\"packs/menu-1.zip\";s:3:\"uid\";s:32:\"6e5038d711f2ee8326c79c3a9e06ded4\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:41:12\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:537;a:25:{s:2:\"id\";s:3:\"573\";s:5:\"title\";s:6:\"Hero 1\";s:5:\"alias\";s:14:\"onepage-hero-1\";s:3:\"zip\";s:24:\"packs/onepage-hero-1.zip\";s:3:\"uid\";s:32:\"9f5fec6956bd2e1e1ecc553a8b7471b0\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 14:48:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:538;a:25:{s:2:\"id\";s:3:\"574\";s:5:\"title\";s:7:\"About 1\";s:5:\"alias\";s:6:\"about1\";s:3:\"zip\";s:16:\"packs/about1.zip\";s:3:\"uid\";s:32:\"fc4962093f61124101c05ceb506fa5d2\";s:3:\"img\";s:17:\"about1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:50:54\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:539;a:25:{s:2:\"id\";s:3:\"575\";s:5:\"title\";s:10:\"Services 1\";s:5:\"alias\";s:9:\"services1\";s:3:\"zip\";s:19:\"packs/services1.zip\";s:3:\"uid\";s:32:\"08f72a81aeb9afdaa57f544e4331a6da\";s:3:\"img\";s:20:\"services1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 14:52:41\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:540;a:25:{s:2:\"id\";s:3:\"576\";s:5:\"title\";s:10:\"Projects 1\";s:5:\"alias\";s:9:\"projects1\";s:3:\"zip\";s:19:\"packs/projects1.zip\";s:3:\"uid\";s:32:\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:01:48\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:541;a:25:{s:2:\"id\";s:3:\"577\";s:5:\"title\";s:8:\"Footer 1\";s:5:\"alias\";s:8:\"footer-1\";s:3:\"zip\";s:18:\"packs/footer-1.zip\";s:3:\"uid\";s:32:\"947fac99689a985c7f0f7dfec4311f6b\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:05:00\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:542;a:25:{s:2:\"id\";s:3:\"578\";s:5:\"title\";s:24:\"Explainer Block 1 Part 1\";s:5:\"alias\";s:23:\"explainer-block-1-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part1.zip\";s:3:\"uid\";s:32:\"731980bef0ea06263d05b286b5a75dfe\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:06:07\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:543;a:25:{s:2:\"id\";s:3:\"579\";s:5:\"title\";s:24:\"Explainer Block 1 Part 2\";s:5:\"alias\";s:23:\"explainer-block-1-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-1-part2.zip\";s:3:\"uid\";s:32:\"ded730f13551f78b9a87b159b72d8ce8\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:07:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:544;a:25:{s:2:\"id\";s:3:\"580\";s:5:\"title\";s:16:\"Projects Modal 1\";s:5:\"alias\";s:16:\"projects-modal-1\";s:3:\"zip\";s:26:\"packs/projects-modal-1.zip\";s:3:\"uid\";s:32:\"b17af2f4e21786711a2ce4ac0c4436ad\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v1/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:08:26\";s:7:\"package\";s:25:\"Smart Living One Pager V1\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"48\";s:9:\"installed\";b:0;}i:545;a:25:{s:2:\"id\";s:3:\"581\";s:5:\"title\";s:6:\"Menu 2\";s:5:\"alias\";s:6:\"menu-2\";s:3:\"zip\";s:16:\"packs/menu-2.zip\";s:3:\"uid\";s:32:\"a8d103f753ee50d4f81aa4100df8b7f9\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:20:20\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:546;a:25:{s:2:\"id\";s:3:\"582\";s:5:\"title\";s:6:\"Hero 2\";s:5:\"alias\";s:6:\"hero-2\";s:3:\"zip\";s:16:\"packs/hero-2.zip\";s:3:\"uid\";s:32:\"7e56900f8c4b6e12435b70e141accaa8\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-07 15:27:59\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:547;a:25:{s:2:\"id\";s:3:\"583\";s:5:\"title\";s:10:\"Services 2\";s:5:\"alias\";s:10:\"services-2\";s:3:\"zip\";s:20:\"packs/services-2.zip\";s:3:\"uid\";s:32:\"da2d588b291a7754096ac77746ba1da5\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:29:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:548;a:25:{s:2:\"id\";s:3:\"584\";s:5:\"title\";s:7:\"About 2\";s:5:\"alias\";s:7:\"about-2\";s:3:\"zip\";s:17:\"packs/about-2.zip\";s:3:\"uid\";s:32:\"8e9e84d1aec08de6e099473683bf0e57\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:30:15\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:549;a:25:{s:2:\"id\";s:3:\"585\";s:5:\"title\";s:10:\"Projects 2\";s:5:\"alias\";s:10:\"projects-2\";s:3:\"zip\";s:20:\"packs/projects-2.zip\";s:3:\"uid\";s:32:\"99bc6ca75f6d5e018701aef5f5b22b27\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:32:06\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:550;a:25:{s:2:\"id\";s:3:\"586\";s:5:\"title\";s:8:\"Footer 2\";s:5:\"alias\";s:7:\"footer2\";s:3:\"zip\";s:17:\"packs/footer2.zip\";s:3:\"uid\";s:32:\"99df496d2fd9e897a2debb66958cb610\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:34:09\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:551;a:25:{s:2:\"id\";s:3:\"587\";s:5:\"title\";s:24:\"Explainer Block 2 Part 1\";s:5:\"alias\";s:23:\"explainer-block-2-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part1.zip\";s:3:\"uid\";s:32:\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:35:48\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:552;a:25:{s:2:\"id\";s:3:\"588\";s:5:\"title\";s:24:\"Explainer Block 2 Part 2\";s:5:\"alias\";s:23:\"explainer-block-2-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-2-part2.zip\";s:3:\"uid\";s:32:\"b12ac82484c5d2609994978f95026057\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:37:05\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:553;a:25:{s:2:\"id\";s:3:\"589\";s:5:\"title\";s:16:\"Projects Modal 2\";s:5:\"alias\";s:16:\"projects-modal-2\";s:3:\"zip\";s:26:\"packs/projects-modal-2.zip\";s:3:\"uid\";s:32:\"ac164d7043a8958ae2931e4be54bf56e\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v2/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:38:22\";s:7:\"package\";s:25:\"Smart Living One Pager V2\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"49\";s:9:\"installed\";b:0;}i:554;a:25:{s:2:\"id\";s:3:\"590\";s:5:\"title\";s:6:\"Menu 3\";s:5:\"alias\";s:6:\"menu-3\";s:3:\"zip\";s:16:\"packs/menu-3.zip\";s:3:\"uid\";s:32:\"7300529d564642c76e61890cf0ef57cf\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:42:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:555;a:25:{s:2:\"id\";s:3:\"591\";s:5:\"title\";s:6:\"Hero 3\";s:5:\"alias\";s:6:\"hero-3\";s:3:\"zip\";s:16:\"packs/hero-3.zip\";s:3:\"uid\";s:32:\"08db05794abf4e6c10788cbd423f92b2\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:46:06\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:556;a:25:{s:2:\"id\";s:3:\"592\";s:5:\"title\";s:7:\"About 3\";s:5:\"alias\";s:7:\"about-3\";s:3:\"zip\";s:17:\"packs/about-3.zip\";s:3:\"uid\";s:32:\"dac01fc9b9d664f271e1ea6a1bbb850c\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:47:44\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:557;a:25:{s:2:\"id\";s:3:\"593\";s:5:\"title\";s:10:\"Services 3\";s:5:\"alias\";s:10:\"services-3\";s:3:\"zip\";s:20:\"packs/services-3.zip\";s:3:\"uid\";s:32:\"4bad1c4a765cef7d93d3c7e2a0e76b83\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:50:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:558;a:25:{s:2:\"id\";s:3:\"594\";s:5:\"title\";s:10:\"Projects 3\";s:5:\"alias\";s:10:\"projects-3\";s:3:\"zip\";s:20:\"packs/projects-3.zip\";s:3:\"uid\";s:32:\"e3337a84122e580679474dea8d7bf37c\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:51:31\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:559;a:25:{s:2:\"id\";s:3:\"595\";s:5:\"title\";s:8:\"Footer 3\";s:5:\"alias\";s:8:\"footer-3\";s:3:\"zip\";s:18:\"packs/footer-3.zip\";s:3:\"uid\";s:32:\"524f4445a5565bf3ef1dcd7b2f0228cc\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:53:03\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:560;a:25:{s:2:\"id\";s:3:\"596\";s:5:\"title\";s:24:\"Explainer Block 3 Part 1\";s:5:\"alias\";s:23:\"explainer-block-3-part1\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part1.zip\";s:3:\"uid\";s:32:\"b1469a955fecb4e1d645a604804716de\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:54:20\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:561;a:25:{s:2:\"id\";s:3:\"597\";s:5:\"title\";s:24:\"Explainer Block 3 Part 2\";s:5:\"alias\";s:23:\"explainer-block-3-part2\";s:3:\"zip\";s:33:\"packs/explainer-block-3-part2.zip\";s:3:\"uid\";s:32:\"3faa6f1dc248ef2ba3d50cc60db557b1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:55:33\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:562;a:25:{s:2:\"id\";s:3:\"598\";s:5:\"title\";s:16:\"Projects Modal 3\";s:5:\"alias\";s:16:\"projects-modal-3\";s:3:\"zip\";s:26:\"packs/projects-modal-3.zip\";s:3:\"uid\";s:32:\"b22bb57c30e75bf7d7ba7d240a21b3fe\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";s:7:\"preview\";s:91:\"https://www.sliderrevolution.com/templates/smart-living-one-page-template-for-wordpress-v3/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:350:\"<span class=\"ttm_content\">Never build a one pager from scratch again!<br>\r\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\r\n20 different \"Smart Living\" modules are included and come in 3 example page setups!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-09-07 15:57:05\";s:7:\"package\";s:25:\"Smart Living One Pager V3\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"50\";s:9:\"installed\";b:0;}i:563;a:22:{s:2:\"id\";s:3:\"599\";s:5:\"title\";s:25:\"Urban Street Skate Slider\";s:5:\"alias\";s:25:\"urban-street-skate-slider\";s:3:\"zip\";s:29:\"urban-street-skate-slider.zip\";s:3:\"uid\";s:32:\"14b18e98ac51aa922a264b74518d6f25\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-09-14 18:54:30\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:564;a:22:{s:2:\"id\";s:3:\"600\";s:5:\"title\";s:34:\"Fast Food Burger Restaurant Slider\";s:5:\"alias\";s:13:\"yummy-burgers\";s:3:\"zip\";s:17:\"yummy-burgers.zip\";s:3:\"uid\";s:32:\"3de3520af809748281f3aaa16d8c2222\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";s:7:\"preview\";s:78:\"https://www.sliderrevolution.com/templates/fast-food-burger-restaurant-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-11 12:47:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:565;a:25:{s:2:\"id\";s:3:\"601\";s:5:\"title\";s:37:\"Tattoo Event Website Template Package\";s:5:\"alias\";s:37:\"tattoo-event-website-template-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"tattoo-event-website-template-package\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-12 14:37:06\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:566;a:25:{s:2:\"id\";s:3:\"602\";s:5:\"title\";s:24:\"Tattoo Event Hero Slider\";s:5:\"alias\";s:24:\"tattoo-event-hero-slider\";s:3:\"zip\";s:34:\"packs/tattoo-event-hero-slider.zip\";s:3:\"uid\";s:32:\"3a4eb0f2f1de6b9a644d626c4472208b\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:11:21\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:567;a:25:{s:2:\"id\";s:3:\"603\";s:5:\"title\";s:18:\"Tattoo Event About\";s:5:\"alias\";s:18:\"tattoo-event-about\";s:3:\"zip\";s:28:\"packs/tattoo-event-about.zip\";s:3:\"uid\";s:32:\"ae8aaf2b1aeb84036c35ac3d4a178ed6\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:14:35\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:568;a:25:{s:2:\"id\";s:3:\"604\";s:5:\"title\";s:20:\"Tattoo Event Artists\";s:5:\"alias\";s:20:\"tattoo-event-artists\";s:3:\"zip\";s:30:\"packs/tattoo-event-artists.zip\";s:3:\"uid\";s:32:\"e11b6508214396963c856afc1b604e58\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:16:36\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:569;a:25:{s:2:\"id\";s:3:\"605\";s:5:\"title\";s:21:\"Tattoo Event Schedule\";s:5:\"alias\";s:21:\"tattoo-event-schedule\";s:3:\"zip\";s:31:\"packs/tattoo-event-schedule.zip\";s:3:\"uid\";s:32:\"73be4b953a719fc9abfadc447e88b906\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-10-13 11:19:17\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:570;a:25:{s:2:\"id\";s:3:\"606\";s:5:\"title\";s:17:\"Tattoo Event News\";s:5:\"alias\";s:17:\"tattoo-event-news\";s:3:\"zip\";s:27:\"packs/tattoo-event-news.zip\";s:3:\"uid\";s:32:\"80eafaaaa2f1844cac7c5c1efb0912d1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:21:56\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:571;a:25:{s:2:\"id\";s:3:\"607\";s:5:\"title\";s:19:\"Tattoo Event Footer\";s:5:\"alias\";s:19:\"tattoo-event-footer\";s:3:\"zip\";s:29:\"packs/tattoo-event-footer.zip\";s:3:\"uid\";s:32:\"0c16f7290794f2e26566c8a8ca8f6493\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/tattoo-event-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:330:\"<span class=\"ttm_content\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-10-13 11:23:18\";s:7:\"package\";s:29:\"Tattoo Event Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"51\";s:9:\"installed\";b:0;}i:572;a:25:{s:2:\"id\";s:3:\"608\";s:5:\"title\";s:24:\"Startup Website Template\";s:5:\"alias\";s:24:\"startup-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"startup-website-template\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:29:34\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:573;a:25:{s:2:\"id\";s:3:\"609\";s:5:\"title\";s:12:\"Startup Menu\";s:5:\"alias\";s:12:\"startup-menu\";s:3:\"zip\";s:22:\"packs/startup-menu.zip\";s:3:\"uid\";s:32:\"10b7853c05d47a99e61a68ec7ef0a0ea\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:32:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:574;a:25:{s:2:\"id\";s:3:\"610\";s:5:\"title\";s:12:\"Startup Hero\";s:5:\"alias\";s:12:\"startup-hero\";s:3:\"zip\";s:22:\"packs/startup-hero.zip\";s:3:\"uid\";s:32:\"7a41e68bac8bc7f937b7eb957e01eb11\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:34:41\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:575;a:25:{s:2:\"id\";s:3:\"611\";s:5:\"title\";s:13:\"Startup About\";s:5:\"alias\";s:13:\"startup-about\";s:3:\"zip\";s:23:\"packs/startup-about.zip\";s:3:\"uid\";s:32:\"22a816ba986476a36fef3887ff4d1ea1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:36:55\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:576;a:25:{s:2:\"id\";s:3:\"612\";s:5:\"title\";s:18:\"Startup Features 1\";s:5:\"alias\";s:18:\"startup-features-1\";s:3:\"zip\";s:28:\"packs/startup-features-1.zip\";s:3:\"uid\";s:32:\"4b0b7b8773ba30bdc58b862442155faa\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:39:11\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:577;a:25:{s:2:\"id\";s:3:\"613\";s:5:\"title\";s:18:\"Startup Features 2\";s:5:\"alias\";s:18:\"startup-features-2\";s:3:\"zip\";s:28:\"packs/startup-features-2.zip\";s:3:\"uid\";s:32:\"7a686556ca8c4355fea931b3e946a3d0\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:40:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:10:\"zindex=\"0\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:578;a:25:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:12:\"Startup Team\";s:5:\"alias\";s:12:\"startup-team\";s:3:\"zip\";s:22:\"packs/startup-team.zip\";s:3:\"uid\";s:32:\"7969f1f556fd276ec04dcbf49144d2f8\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:42:12\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:579;a:25:{s:2:\"id\";s:3:\"615\";s:5:\"title\";s:15:\"Startup Reviews\";s:5:\"alias\";s:15:\"startup-reviews\";s:3:\"zip\";s:25:\"packs/startup-reviews.zip\";s:3:\"uid\";s:32:\"4d5253028165c237cda5f42c3f721c09\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:43:42\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:12:\"zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:580;a:25:{s:2:\"id\";s:3:\"616\";s:5:\"title\";s:11:\"Startup CTA\";s:5:\"alias\";s:11:\"startup-cta\";s:3:\"zip\";s:21:\"packs/startup-cta.zip\";s:3:\"uid\";s:32:\"bfe7cb2a94dd8292179e16a986cf2748\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-11-03 09:45:02\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:581;a:25:{s:2:\"id\";s:3:\"617\";s:5:\"title\";s:14:\"Startup Footer\";s:5:\"alias\";s:14:\"startup-footer\";s:3:\"zip\";s:24:\"packs/startup-footer.zip\";s:3:\"uid\";s:32:\"d73466042d108699d366bf9cab2beaa8\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:46:31\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:582;a:25:{s:2:\"id\";s:3:\"618\";s:5:\"title\";s:19:\"Startup Video Modal\";s:5:\"alias\";s:19:\"startup-video-modal\";s:3:\"zip\";s:29:\"packs/startup-video-modal.zip\";s:3:\"uid\";s:32:\"5fd53a8ad93456a152c25079f6437377\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/startup-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.5.9\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:399:\"<span class=\"ttm_content\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\r\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-11-03 09:47:44\";s:7:\"package\";s:24:\"Startup Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"52\";s:9:\"installed\";b:0;}i:583;a:25:{s:2:\"id\";s:3:\"619\";s:5:\"title\";s:32:\"Christmas Gift Card Landing Page\";s:5:\"alias\";s:32:\"christmas-gift-card-landing-page\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"christmas-gift-card-landing-page\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:05:33\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:584;a:25:{s:2:\"id\";s:3:\"620\";s:5:\"title\";s:24:\"Christmas Landing Page 1\";s:5:\"alias\";s:24:\"christmas-landing-page-1\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-1.zip\";s:3:\"uid\";s:32:\"17eb656138d076ca1dc2d9fa5cefb1b8\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:509:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:08:37\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:585;a:25:{s:2:\"id\";s:3:\"621\";s:5:\"title\";s:24:\"Christmas Landing Page 2\";s:5:\"alias\";s:24:\"christmas-landing-page-2\";s:3:\"zip\";s:34:\"packs/christmas-landing-page-2.zip\";s:3:\"uid\";s:32:\"ea0d2cfdba50c8060c66ee7b979c3b83\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/christmas-gift-card-landing-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:372:\"<span class=\"ttm_content\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-12-08 12:10:54\";s:7:\"package\";s:32:\"Christmas Gift Card Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"53\";s:9:\"installed\";b:0;}i:586;a:22:{s:2:\"id\";s:3:\"622\";s:5:\"title\";s:12:\"Image Slider\";s:5:\"alias\";s:12:\"image-slider\";s:3:\"zip\";s:16:\"image-slider.zip\";s:3:\"uid\";s:32:\"85a8fcfa9220809176bd3d6bc70b4abf\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/newborn-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.12\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:213:\"<span class=\"ttm_content\">Get an instant \"wow\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-04 09:45:41\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:587;a:22:{s:2:\"id\";s:3:\"623\";s:5:\"title\";s:17:\"Full Width Slider\";s:5:\"alias\";s:17:\"full-width-slider\";s:3:\"zip\";s:21:\"full-width-slider.zip\";s:3:\"uid\";s:32:\"e2792804e7a1f3ec9806f6a6225a559d\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/delicious-full-width-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-10 11:40:04\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:588;a:25:{s:2:\"id\";s:3:\"624\";s:5:\"title\";s:20:\"App Website Template\";s:5:\"alias\";s:20:\"app-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"app-website-template\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:22:53\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:589;a:26:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:16:\"App Website Menu\";s:5:\"alias\";s:16:\"app-website-menu\";s:3:\"zip\";s:26:\"packs/app-website-menu.zip\";s:3:\"uid\";s:32:\"c3c100db368c091d01852df9851b9840\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:26:14\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:590;a:25:{s:2:\"id\";s:3:\"626\";s:5:\"title\";s:16:\"App Website Hero\";s:5:\"alias\";s:16:\"app-website-hero\";s:3:\"zip\";s:26:\"packs/app-website-hero.zip\";s:3:\"uid\";s:32:\"4b42974b08f2923986932ed529974d6f\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:29:00\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:13:\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:591;a:25:{s:2:\"id\";s:3:\"627\";s:5:\"title\";s:20:\"App Download Buttons\";s:5:\"alias\";s:20:\"app-download-buttons\";s:3:\"zip\";s:30:\"packs/app-download-buttons.zip\";s:3:\"uid\";s:32:\"d5ecce65284cc95c506185e6f6291d55\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:31:22\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:592;a:25:{s:2:\"id\";s:3:\"628\";s:5:\"title\";s:17:\"App Website About\";s:5:\"alias\";s:17:\"app-website-about\";s:3:\"zip\";s:27:\"packs/app-website-about.zip\";s:3:\"uid\";s:32:\"984477b3ea7c943a7c6be78950754e3c\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:33:06\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:593;a:25:{s:2:\"id\";s:3:\"629\";s:5:\"title\";s:20:\"App Website Features\";s:5:\"alias\";s:20:\"app-website-features\";s:3:\"zip\";s:30:\"packs/app-website-features.zip\";s:3:\"uid\";s:32:\"206a0f73553c974ad86790fba6a13efd\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:35:08\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:594;a:25:{s:2:\"id\";s:3:\"630\";s:5:\"title\";s:21:\"App Website Video Cta\";s:5:\"alias\";s:21:\"app-website-video-cta\";s:3:\"zip\";s:31:\"packs/app-website-video-cta.zip\";s:3:\"uid\";s:32:\"19b2930f9cd9840dccbe94cb1cc435e2\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:36:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:595;a:25:{s:2:\"id\";s:3:\"631\";s:5:\"title\";s:23:\"App Website Screenshots\";s:5:\"alias\";s:23:\"app-website-screenshots\";s:3:\"zip\";s:33:\"packs/app-website-screenshots.zip\";s:3:\"uid\";s:32:\"94ce8eeecb7ffad62adc2d29b203f9d2\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:38:15\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:596;a:25:{s:2:\"id\";s:3:\"632\";s:5:\"title\";s:22:\"App Testimonials Title\";s:5:\"alias\";s:22:\"app-testimonials-title\";s:3:\"zip\";s:32:\"packs/app-testimonials-title.zip\";s:3:\"uid\";s:32:\"bea74fa6e180fe23007c3d215b1b0704\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:40:21\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:597;a:25:{s:2:\"id\";s:3:\"633\";s:5:\"title\";s:24:\"App Website Testimonials\";s:5:\"alias\";s:24:\"app-website-testimonials\";s:3:\"zip\";s:34:\"packs/app-website-testimonials.zip\";s:3:\"uid\";s:32:\"e7438a870ac1007da4c7821056d511fc\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:41:59\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:107:\" offset=\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\" zindex=\"300\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:598;a:25:{s:2:\"id\";s:3:\"634\";s:5:\"title\";s:16:\"App Website Team\";s:5:\"alias\";s:16:\"app-website-team\";s:3:\"zip\";s:26:\"packs/app-website-team.zip\";s:3:\"uid\";s:32:\"d9013f2968e43f696f8cc33fa3524071\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:43:40\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:94:\" offset=\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:599;a:25:{s:2:\"id\";s:3:\"635\";s:5:\"title\";s:18:\"App Website Footer\";s:5:\"alias\";s:18:\"app-website-footer\";s:3:\"zip\";s:28:\"packs/app-website-footer.zip\";s:3:\"uid\";s:32:\"5e13126b929feb389f9e083f3476ec46\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:183:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-01-17 10:45:12\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:600;a:25:{s:2:\"id\";s:3:\"636\";s:5:\"title\";s:15:\"App Video Modal\";s:5:\"alias\";s:15:\"app-video-modal\";s:3:\"zip\";s:25:\"packs/app-video-modal.zip\";s:3:\"uid\";s:32:\"7fe8115d0b6158c90fe92d1144ed7b01\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/spaceman-app-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.14\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-17 10:46:49\";s:7:\"package\";s:20:\"App Website Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"54\";s:9:\"installed\";b:0;}i:601;a:25:{s:2:\"id\";s:3:\"637\";s:5:\"title\";s:25:\"Testimonial Carousel Pack\";s:5:\"alias\";s:25:\"testimonial-carousel-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"testimonial-carousel-pack\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:126:\"<span class=\"ttm_content\">An elegant slider for your website. Flexible and customizable.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:38:17\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:602;a:25:{s:2:\"id\";s:3:\"638\";s:5:\"title\";s:22:\"Testimonial Carousel 1\";s:5:\"alias\";s:22:\"testimonial-carousel-1\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-1.zip\";s:3:\"uid\";s:32:\"1cc1f92edb4edd47f880c0b4f77e343d\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:41:02\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:603;a:25:{s:2:\"id\";s:3:\"639\";s:5:\"title\";s:22:\"Testimonial Carousel 2\";s:5:\"alias\";s:22:\"testimonial-carousel-2\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-2.zip\";s:3:\"uid\";s:32:\"b6ad1675b8d14c0ccc63ffc01b221aac\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:43:25\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:604;a:25:{s:2:\"id\";s:3:\"640\";s:5:\"title\";s:22:\"Testimonial Carousel 3\";s:5:\"alias\";s:22:\"testimonial-carousel-3\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-3.zip\";s:3:\"uid\";s:32:\"cb4a72fb40fc400a71754f71b9bb2d6e\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:46:01\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:605;a:25:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:22:\"Testimonial Carousel 4\";s:5:\"alias\";s:22:\"testimonial-carousel-4\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-4.zip\";s:3:\"uid\";s:32:\"bfca98d6b4042b38df044e9e2a6ca983\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:47:57\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:606;a:25:{s:2:\"id\";s:3:\"642\";s:5:\"title\";s:22:\"Testimonial Carousel 5\";s:5:\"alias\";s:22:\"testimonial-carousel-5\";s:3:\"zip\";s:32:\"packs/testimonial-carousel-5.zip\";s:3:\"uid\";s:32:\"4a9b9c72b51628e1343adde9bff3915f\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/testimonial-carousel-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-01-31 16:49:27\";s:7:\"package\";s:25:\"Testimonial Carousel Pack\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"55\";s:9:\"installed\";b:0;}i:607;a:22:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:28:\"Deep Dive Ocean Water Effect\";s:5:\"alias\";s:9:\"deep-dive\";s:3:\"zip\";s:13:\"deep-dive.zip\";s:3:\"uid\";s:32:\"5cc0599857b0108fe4e76adc7fbf9a16\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/deep-dive-ocean-water-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\r\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:23:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:608;a:22:{s:2:\"id\";s:3:\"644\";s:5:\"title\";s:22:\"Particle Wave Showcase\";s:5:\"alias\";s:22:\"particle-wave-showcase\";s:3:\"zip\";s:26:\"particle-wave-showcase.zip\";s:3:\"uid\";s:32:\"1c9ac477fd636078d1812d8d98060899\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/particle-wave-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:307:\"<span class=\"ttm_content\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:9:\"specialfx\";}s:14:\"plugin_require\";s:178:\"[{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:30:08\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:609;a:22:{s:2:\"id\";s:3:\"645\";s:5:\"title\";s:17:\"Video Hero Header\";s:5:\"alias\";s:17:\"video-hero-header\";s:3:\"zip\";s:21:\"video-hero-header.zip\";s:3:\"uid\";s:32:\"f6a715d4b10e0746f7eb5100836ba1ab\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";s:7:\"preview\";s:61:\"https://www.sliderrevolution.com/templates/video-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\r\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:9:\"specialfx\";}s:14:\"plugin_require\";s:345:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:33:10\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:610;a:22:{s:2:\"id\";s:3:\"646\";s:5:\"title\";s:28:\"Solar System Showcase Slider\";s:5:\"alias\";s:28:\"solar-system-showcase-slider\";s:3:\"zip\";s:32:\"solar-system-showcase-slider.zip\";s:3:\"uid\";s:32:\"40f7b26ea7f8228d40e8e9cf0f34b5e8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/solar-system-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.15\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:233:\"<span class=\"ttm_content\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. </span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:360:\"[{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-particlewave-addon\\/revslider-particlewave-addon.php\",\"name\":\"Particle Wave AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-02-09 09:50:27\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:611;a:22:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:26:\"Optic Shop Showcase Slider\";s:5:\"alias\";s:26:\"Optic-shop-showcase-slider\";s:3:\"zip\";s:30:\"Optic-shop-showcase-slider.zip\";s:3:\"uid\";s:32:\"01509228c996ad45c2179d03654f499b\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/optic-shop-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.16\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:272:\"<span class=\"ttm_content\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2022-02-16 16:41:07\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:612;a:22:{s:2:\"id\";s:3:\"648\";s:5:\"title\";s:27:\"WordPress Charts And Graphs\";s:5:\"alias\";s:24:\"charts-template-showcase\";s:3:\"zip\";s:28:\"charts-template-showcase.zip\";s:3:\"uid\";s:32:\"4ae2fe61830f96c6c5b316368c1ad2c6\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/wordpress-charts-and-graphs/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.17\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:341:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-transitionpack-addon\\/revslider-transitionpack-addon.php\",\"name\":\"Advanced Transitions\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-03 15:55:16\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:613;a:25:{s:2:\"id\";s:3:\"649\";s:5:\"title\";s:31:\"Fashion Website Slider Template\";s:5:\"alias\";s:31:\"fashion-website-slider-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"fashion-website-slider-template\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:00:36\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:614;a:25:{s:2:\"id\";s:3:\"650\";s:5:\"title\";s:22:\"Fashion Website Slider\";s:5:\"alias\";s:22:\"fashion-website-slider\";s:3:\"zip\";s:32:\"packs/fashion-website-slider.zip\";s:3:\"uid\";s:32:\"8fb8379f47346173fa0dd402dda37360\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:04:56\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:615;a:25:{s:2:\"id\";s:3:\"651\";s:5:\"title\";s:28:\"Fashion Website Slider Modal\";s:5:\"alias\";s:28:\"fashion-website-slider-modal\";s:3:\"zip\";s:38:\"packs/fashion-website-slider-modal.zip\";s:3:\"uid\";s:32:\"788f34043b6a5fcbfa5fc1c3322fb502\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/fashion-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:251:\"<span class=\"ttm_content\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-14 13:08:21\";s:7:\"package\";s:22:\"Fashion Website Slider\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"56\";s:9:\"installed\";b:0;}i:616;a:23:{s:2:\"id\";s:3:\"652\";s:5:\"title\";s:24:\"Furniture Website Slider\";s:5:\"alias\";s:24:\"furniture-website-slider\";s:3:\"zip\";s:28:\"furniture-website-slider.zip\";s:3:\"uid\";s:32:\"8575493ed5fd1ee2e671e67479fdeccb\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/furniture-website-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.5.19\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2022-03-23 14:05:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:594:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}s:15:\"coffee-flavours\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"coffee-flavors/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"coffee-flavors/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"coffee-flavors/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"coffee-flavors/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"coffee-flavors/slide5.jpg\";}}s:15:\"showreel-slider\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"showreel-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"showreel-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"showreel-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"showreel-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"showreel-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"showreel-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"showreel-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:26:\"showreel-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:26:\"showreel-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:27:\"showreel-slider/slide10.jpg\";}}s:16:\"visual-art-forms\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"visual-art-forms/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"visual-art-forms/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"visual-art-forms/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"visual-art-forms/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"visual-art-forms/slide5.jpg\";}}s:14:\"bg-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"bg-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"bg-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"bg-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"bg-effect-hero/slide4.jpg\";}}s:9:\"cyberfunk\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"cyberfunk/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"cyberfunk/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"cyberfunk/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"cyberfunk/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"cyberfunk/slide5.jpg\";}}s:21:\"motion-blur-portfolio\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"motion-blur-portfolio/slide8.jpg\";}}s:18:\"portal-effect-hero\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portal-effect-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"portal-effect-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"portal-effect-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"portal-effect-hero/slide4.jpg\";}}s:15:\"winery-timeline\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"winery-timeline/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"winery-timeline/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"winery-timeline/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"winery-timeline/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"winery-timeline/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"winery-timeline/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"winery-timeline/slide7.jpg\";}}s:25:\"smart-living-one-pager-v1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V1.jpg\";}}s:25:\"smart-living-one-pager-v2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V2.jpg\";}}s:25:\"smart-living-one-pager-v3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/Smart-Living-One-Pager-V3.jpg\";}}s:6:\"menu-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-1/slide1.jpg\";}}s:14:\"onepage-hero-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"onepage-hero-1/slide1.jpg\";}}s:6:\"about1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"about1/slide1.jpg\";}}s:9:\"services1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"services1/slide1.jpg\";}}s:9:\"projects1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"projects1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"projects1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"projects1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:20:\"projects1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:20:\"projects1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:20:\"projects1/slide6.jpg\";}}s:8:\"footer-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-1/slide1.jpg\";}}s:23:\"explainer-block-1-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part1/slide1.jpg\";}}s:23:\"explainer-block-1-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-1-part2/slide1.jpg\";}}s:16:\"projects-modal-1\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-1/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-1/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-1/slide6.jpg\";}}s:6:\"menu-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-2/slide1.jpg\";}}s:6:\"hero-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-2/slide1.jpg\";}}s:10:\"services-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"services-2/services2-thumbnail.jpg\";}}s:7:\"about-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-2/slide1.jpg\";}}s:10:\"projects-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"projects-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"projects-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:21:\"projects-2/slide6.jpg\";}}s:7:\"footer2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"footer2/slide1.jpg\";}}s:23:\"explainer-block-2-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part1/slide1.jpg\";}}s:23:\"explainer-block-2-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-2-part2/slide1.jpg\";}}s:16:\"projects-modal-2\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-2/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-2/slide6.jpg\";}}s:6:\"menu-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"menu-3/slide1.jpg\";}}s:6:\"hero-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"hero-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:17:\"hero-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:17:\"hero-3/slide3.jpg\";}}s:7:\"about-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"about-3/slide1.jpg\";}}s:10:\"services-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"services-3/slide1.jpg\";}}s:10:\"projects-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"projects-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"projects-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"projects-3/slide3.jpg\";}}s:8:\"footer-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"footer-3/slide1.jpg\";}}s:23:\"explainer-block-3-part1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part1/slide1.jpg\";}}s:23:\"explainer-block-3-part2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"explainer-block-3-part2/slide1.jpg\";}}s:16:\"projects-modal-3\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"projects-modal-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"projects-modal-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"projects-modal-3/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"projects-modal-3/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"projects-modal-3/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"projects-modal-3/slide6.jpg\";}}s:25:\"urban-street-skate-slider\";a:12:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:36:\"urban-street-skate-slider/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide10.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide11.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:37:\"urban-street-skate-slider/slide12.jpg\";}}s:13:\"yummy-burgers\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"yummy-burgers/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"yummy-burgers/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"yummy-burgers/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"yummy-burgers/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"yummy-burgers/slide5.jpg\";}}s:37:\"tattoo-event-website-template-package\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"packages/tattoo_event_website_package.jpg\";}}s:24:\"tattoo-event-hero-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"tattoo-event-hero-slider/slide3.jpg\";}}s:18:\"tattoo-event-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"tattoo-event-about/slide1.jpg\";}}s:20:\"tattoo-event-artists\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"tattoo-event-artists/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"tattoo-event-artists/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"tattoo-event-artists/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"tattoo-event-artists/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"tattoo-event-artists/slide5.jpg\";}}s:21:\"tattoo-event-schedule\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"tattoo-event-schedule/slide3.jpg\";}}s:17:\"tattoo-event-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"tattoo-event-news/slide1.jpg\";}}s:19:\"tattoo-event-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"tattoo-event-footer/slide1.jpg\";}}s:24:\"startup-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"packages/startup-website-template.jpg\";}}s:12:\"startup-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-menu/slide1.jpg\";}}s:12:\"startup-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-hero/slide1.jpg\";}}s:13:\"startup-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"startup-about/slide1.jpg\";}}s:18:\"startup-features-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-1/slide1.jpg\";}}s:18:\"startup-features-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"startup-features-2/slide1.jpg\";}}s:12:\"startup-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"startup-team/slide1.jpg\";}}s:15:\"startup-reviews\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"startup-reviews/slide1.jpg\";}}s:11:\"startup-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"startup-cta/slide1.jpg\";}}s:14:\"startup-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"startup-footer/slide1.jpg\";}}s:19:\"startup-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"startup-video-modal/slide1.jpg\";}}s:32:\"christmas-gift-card-landing-page\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"packages/christmas-gift-card-landing-page.jpg\";}}s:24:\"christmas-landing-page-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"christmas-gift-card-landing-page/slide1.jpg\";}}s:24:\"christmas-landing-page-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"christmas-landing-page-2/slide1.jpg\";}}s:12:\"image-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"image-slider/slide-1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"image-slider/slide-2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"image-slider/slide-3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"image-slider/slide-4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"image-slider/slide-5.jpg\";}}s:17:\"full-width-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"full-width-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"full-width-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"full-width-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"full-width-slider/slide4.jpg\";}}s:20:\"app-website-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/app-website-template.jpg\";}}s:16:\"app-website-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-menu/slide1.jpg\";}}s:16:\"app-website-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-hero/slide1.jpg\";}}s:20:\"app-download-buttons\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-download-buttons/slide1.jpg\";}}s:17:\"app-website-about\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"app-website-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"app-website-about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"app-website-about/slide3.jpg\";}}s:20:\"app-website-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"app-website-features/slide1.jpg\";}}s:21:\"app-website-video-cta\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"app-website-video-cta/slide1.jpg\";}}s:23:\"app-website-screenshots\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"app-website-screenshots/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"app-website-screenshots/slide2.jpg\";}}s:22:\"app-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"app-testimonials-title/slide1.jpg\";}}s:24:\"app-website-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"app-website-testimonials/slide1.jpg\";}}s:16:\"app-website-team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"app-website-team/slide1.jpg\";}}s:18:\"app-website-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"app-website-footer/slide1.jpg\";}}s:15:\"app-video-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"app-video-modal/slide1.jpg\";}}s:25:\"testimonial-carousel-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/testimonial-carousel-pack.jpg\";}}s:22:\"testimonial-carousel-1\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-1/slide4.jpg\";}}s:22:\"testimonial-carousel-2\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"testimonial-carousel-2/slide5.jpg\";}}s:22:\"testimonial-carousel-3\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-3/slide3.jpg\";}}s:22:\"testimonial-carousel-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-4/slide1.jpg\";}}s:22:\"testimonial-carousel-5\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"testimonial-carousel-5/slide4.jpg\";}}s:9:\"deep-dive\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deep-dive/slide1.jpg\";}}s:22:\"particle-wave-showcase\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"particle-wave-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"particle-wave-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"particle-wave-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"particle-wave-showcase/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"particle-wave-showcase/slide5.jpg\";}}s:17:\"video-hero-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"video-hero-header/slide1.jpg\";}}s:28:\"solar-system-showcase-slider\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:39:\"solar-system-showcase-slider/slide9.jpg\";}}s:26:\"Optic-shop-showcase-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:37:\"Optic-shop-showcase-slider/slide5.jpg\";}}s:24:\"charts-template-showcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"charts-template-showcase/slide1.jpg\";}}s:31:\"fashion-website-slider-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"packages/fashion-website-slider.jpg\";}}s:22:\"fashion-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fashion-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fashion-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"fashion-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"fashion-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"fashion-website-slider/slide5.jpg\";}}s:28:\"fashion-website-slider-modal\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:39:\"fashion-website-slider-modal/slide5.jpg\";}}s:24:\"furniture-website-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"furniture-website-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"furniture-website-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"furniture-website-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"furniture-website-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"furniture-website-slider/slide5.jpg\";}}}}','no'),(229,'rs-templates-counter','1','no'),(230,'revslider_table_version','1.0.12','yes'),(231,'_transient_mcw_version','3.2.0','yes'),(232,'mcw_config','a:13:{s:9:\"numformat\";s:2:\"US\";s:6:\"linkto\";s:6:\"custom\";s:4:\"link\";s:20:\"/currencies/[symbol]\";s:5:\"fonts\";a:0:{}s:10:\"custom_css\";s:0:\"\";s:3:\"api\";s:9:\"coingecko\";s:7:\"api_key\";s:0:\"\";s:12:\"api_interval\";i:3600;s:7:\"license\";s:5:\"false\";s:11:\"license_key\";s:0:\"\";s:14:\"license_action\";s:0:\"\";s:23:\"default_currency_format\";a:6:{s:3:\"iso\";s:3:\"USD\";s:6:\"symbol\";s:0:\"\";s:8:\"position\";s:15:\"{symbol}{price}\";s:13:\"thousands_sep\";s:1:\",\";s:12:\"decimals_sep\";s:1:\".\";s:8:\"decimals\";i:2;}s:15:\"currency_format\";a:3:{i:0;a:6:{s:3:\"iso\";s:3:\"USD\";s:6:\"symbol\";s:1:\"$\";s:8:\"position\";s:22:\"{symbol}{space}{price}\";s:13:\"thousands_sep\";s:1:\",\";s:12:\"decimals_sep\";s:1:\".\";s:8:\"decimals\";i:2;}i:1;a:6:{s:3:\"iso\";s:3:\"EUR\";s:6:\"symbol\";s:3:\"€\";s:8:\"position\";s:22:\"{price}{space}{symbol}\";s:13:\"thousands_sep\";s:1:\".\";s:12:\"decimals_sep\";s:1:\",\";s:8:\"decimals\";i:2;}i:2;a:6:{s:3:\"iso\";s:3:\"INR\";s:6:\"symbol\";s:3:\"₹\";s:8:\"position\";s:22:\"{symbol}{space}{price}\";s:13:\"thousands_sep\";s:1:\",\";s:12:\"decimals_sep\";s:1:\".\";s:8:\"decimals\";i:2;}}}','yes'),(233,'recently_activated','a:2:{s:37:\"wp-whatsapp-chat/wp-whatsapp-chat.php\";i:1642591440;s:19:\"chaty/cht-icons.php\";i:1642590766;}','yes'),(234,'revslider_update_version','6.4.10','yes'),(235,'elementor_version','3.5.5','yes'),(236,'elementor_install_history','a:3:{s:5:\"3.5.3\";i:1642153362;s:5:\"3.5.4\";i:1643602063;s:5:\"3.5.5\";i:1644811710;}','yes'),(237,'widget_booked_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(238,'widget_userpress_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(239,'widget_mks_flickr_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(240,'widget_newsletterwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(241,'widget_newsletterwidgetminimal','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(242,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(243,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(244,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(245,'widget_ct_recent_posts','a:3:{i:1;a:5:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:6:\"layout\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(246,'widget_cs_social_widget','a:3:{i:1;a:16:{s:5:\"title\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"link_rss\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"link_google\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:13:\"link_dribbble\";s:1:\"#\";s:11:\"link_flickr\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:14:\"link_bloglovin\";s:0:\"\";s:14:\"link_instagram\";s:1:\"#\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;}i:2;a:16:{s:5:\"title\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"link_rss\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"link_google\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:13:\"link_dribbble\";s:0:\"\";s:11:\"link_flickr\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:14:\"link_bloglovin\";s:0:\"\";s:14:\"link_instagram\";s:0:\"\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(247,'widget_getintouch_widget','a:4:{i:1;a:13:{s:5:\"title\";s:0:\"\";s:12:\"address_text\";s:20:\"Melbourne, Australia\";s:10:\"phone_text\";s:16:\"(Sat - Thursday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:14:\"(10am - 05 pm)\";s:13:\"address_label\";s:18:\"380 St Kilda Road,\";s:11:\"phone_label\";s:22:\"Call Us: (210) 123-451\";s:10:\"time_label\";s:15:\"Monday - Friday\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:54:\"https://demo.casethemes.net/consultio-finance4/contact\";}i:2;a:13:{s:5:\"title\";s:0:\"\";s:12:\"address_text\";s:41:\" Kakkandu, Cochin, Kerala, India, 682 030\";s:10:\"phone_text\";s:17:\"(Monday - Friday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:0:\"\";s:13:\"address_label\";s:39:\"Carnival Infopark, Phase II, 1st Floor,\";s:11:\"phone_label\";s:23:\"Call Us: +91 9995205566\";s:10:\"time_label\";s:0:\"\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:63:\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\";}i:3;a:13:{s:5:\"title\";s:0:\"\";s:12:\"address_text\";s:20:\"Melbourne, Australia\";s:10:\"phone_text\";s:16:\"(Sat - Thursday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:14:\"(10am - 05 pm)\";s:13:\"address_label\";s:18:\"380 St Kilda Road,\";s:11:\"phone_label\";s:22:\"Call Us: (210) 123-451\";s:10:\"time_label\";s:15:\"Monday - Friday\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:54:\"https://demo.casethemes.net/consultio-finance4/contact\";}s:12:\"_multiwidget\";i:1;}','yes'),(248,'widget_newsletter_widget','a:2:{i:2;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(249,'booked_version_check','2.3.5','yes'),(252,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:0;s:4:\"hour\";i:23;s:6:\"minute\";i:40;s:6:\"second\";i:44;s:6:\"offset\";i:85244;s:8:\"initsend\";i:1642376444;}','yes'),(257,'sbi_rating_notice','pending','no'),(258,'sbi_db_version','2.1','yes'),(259,'sb_instagram_errors','a:9:{s:10:\"connection\";a:0:{}s:7:\"hashtag\";a:0:{}s:8:\"resizing\";a:0:{}s:15:\"database_create\";a:0:{}s:10:\"upload_dir\";a:0:{}s:8:\"accounts\";a:0:{}s:9:\"error_log\";a:0:{}s:10:\"action_log\";a:10:{i:57;s:43:\"05-10 17:50:38 - Deleted all platform data.\";i:58;s:48:\"05-10 17:50:38 - Deleted all connected accounts.\";i:59;s:43:\"05-11 01:18:50 - Deleted all platform data.\";i:60;s:48:\"05-11 01:18:50 - Deleted all connected accounts.\";i:61;s:43:\"05-13 21:01:13 - Deleted all platform data.\";i:62;s:48:\"05-13 21:01:13 - Deleted all connected accounts.\";i:63;s:43:\"05-16 13:59:31 - Deleted all platform data.\";i:64;s:48:\"05-16 13:59:31 - Deleted all connected accounts.\";i:65;s:43:\"05-19 03:57:18 - Deleted all platform data.\";i:66;s:48:\"05-19 03:57:18 - Deleted all connected accounts.\";}s:7:\"revoked\";a:0:{}}','no'),(260,'sb_instagram_settings','a:44:{s:15:\"sb_instagram_at\";s:0:\"\";s:20:\"sb_instagram_user_id\";s:0:\"\";s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_ajax_theme\";b:0;s:27:\"sb_instagram_disable_resize\";b:0;s:23:\"sb_instagram_cache_time\";i:1;s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:16:\"sbi_caching_type\";s:10:\"background\";s:23:\"sbi_cache_cron_interval\";s:7:\"12hours\";s:19:\"sbi_cache_cron_time\";s:1:\"1\";s:20:\"sbi_cache_cron_am_pm\";s:2:\"am\";s:18:\"sb_instagram_width\";s:3:\"100\";s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";b:0;s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";s:2:\"20\";s:24:\"sb_instagram_height_unit\";s:0:\"\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:27:\"sb_instagram_disable_mobile\";b:0;s:26:\"sb_instagram_image_padding\";s:1:\"5\";s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:17:\"sb_instagram_sort\";s:4:\"none\";s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:12:\"Load More...\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:24:\"sb_instagram_show_header\";b:1;s:24:\"sb_instagram_header_size\";s:5:\"small\";s:25:\"sb_instagram_header_color\";s:0:\"\";s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:19:\"Follow on Instagram\";s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:17:\"sb_instagram_cron\";s:2:\"no\";s:19:\"sb_instagram_backup\";b:1;s:15:\"sb_ajax_initial\";b:0;s:24:\"enqueue_css_in_shortcode\";b:0;s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:28:\"sb_instagram_disable_awesome\";b:0;s:18:\"connected_accounts\";a:0:{}}','yes'),(263,'newsletter_diagnostic_cron_calls','a:100:{i:0;i:1646054840;i:1;i:1646111794;i:2;i:1646111915;i:3;i:1646112639;i:4;i:1646112845;i:5;i:1646113085;i:6;i:1646197121;i:7;i:1646197334;i:8;i:1646197456;i:9;i:1646197645;i:10;i:1646200670;i:11;i:1646226014;i:12;i:1646226196;i:13;i:1646292906;i:14;i:1646294823;i:15;i:1646304559;i:16;i:1646305247;i:17;i:1646307116;i:18;i:1646370363;i:19;i:1646370457;i:20;i:1646370746;i:21;i:1646371051;i:22;i:1646371400;i:23;i:1646371644;i:24;i:1646372010;i:25;i:1646372249;i:26;i:1646372610;i:27;i:1646372853;i:28;i:1646373215;i:29;i:1646373458;i:30;i:1646373820;i:31;i:1646374064;i:32;i:1646374426;i:33;i:1646374669;i:34;i:1646395699;i:35;i:1646640024;i:36;i:1646715340;i:37;i:1646853992;i:38;i:1647242571;i:39;i:1647242588;i:40;i:1647242895;i:41;i:1647243138;i:42;i:1647243842;i:43;i:1647244042;i:44;i:1647244420;i:45;i:1647244662;i:46;i:1647244783;i:47;i:1647249599;i:48;i:1647249845;i:49;i:1647250085;i:50;i:1647250448;i:51;i:1647250724;i:52;i:1647250966;i:53;i:1647256539;i:54;i:1647256688;i:55;i:1647256975;i:56;i:1647361231;i:57;i:1647365982;i:58;i:1647446383;i:59;i:1647596236;i:60;i:1647596489;i:61;i:1647596550;i:62;i:1648317783;i:63;i:1648468584;i:64;i:1648545440;i:65;i:1648545761;i:66;i:1648546125;i:67;i:1648546366;i:68;i:1648546770;i:69;i:1648546906;i:70;i:1648546954;i:71;i:1648547236;i:72;i:1648547597;i:73;i:1648547839;i:74;i:1648548171;i:75;i:1648548474;i:76;i:1648549860;i:77;i:1648550042;i:78;i:1648550284;i:79;i:1648552137;i:80;i:1648552379;i:81;i:1648790744;i:82;i:1648935985;i:83;i:1649540247;i:84;i:1649540262;i:85;i:1649623707;i:86;i:1649755010;i:87;i:1649943423;i:88;i:1650132520;i:89;i:1650323707;i:90;i:1650512168;i:91;i:1650707659;i:92;i:1650915066;i:93;i:1651193188;i:94;i:1651451593;i:95;i:1652205028;i:96;i:1652231923;i:97;i:1652475664;i:98;i:1652709564;i:99;i:1652932628;}','no'),(264,'external_updates-massive-cryptocurrency-widgets','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1652932628;s:14:\"checkedVersion\";s:5:\"3.2.0\";s:6:\"update\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"massive-cryptocurrency-widgets\";s:7:\"version\";s:5:\"3.2.0\";s:12:\"download_url\";N;s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:38:\"https://massivecryptopro.blocksera.com\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";N;s:14:\"upgrade_notice\";N;s:5:\"icons\";a:0:{}s:8:\"filename\";s:65:\"massive-cryptocurrency-widgets/massive-cryptocurrency-widgets.php\";}s:11:\"updateClass\";s:23:\"Puc_v4p10_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(265,'sbi_notifications','a:4:{s:6:\"update\";i:1648545499;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(266,'external_updates-booked','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1652932638;s:14:\"checkedVersion\";s:5:\"2.3.5\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:6:\"booked\";s:7:\"version\";s:5:\"2.3.5\";s:8:\"homepage\";s:20:\"https://getbooked.io\";s:12:\"download_url\";s:55:\"http://boxyupdates.com/get/?action=download&slug=booked\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:17:\"booked/booked.php\";}}','no'),(267,'sbi_newuser_notifications','a:4:{s:6:\"update\";i:1642153374;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes');
INSERT INTO `wp_options` VALUES (270,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:13:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:14:\"Online Service\";i:7;s:7:\"Product\";i:8;s:11:\"Real Estate\";i:9;s:18:\"Social Involvement\";i:10;s:14:\"Thank You Page\";i:11;s:6:\"Travel\";i:12;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:886:{i:0;a:16:{s:4:\"tmpl\";i:768;s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:773;s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:776;s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:782;s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:783;s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:787;s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:788;s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:790;s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:791;s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:793;s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:794;s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:799;s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:800;s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:802;s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:804;s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:805;s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:807;s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:812;s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:814;s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:815;s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:817;s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:818;s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:819;s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:820;s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:821;s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:822;s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:824;s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:827;s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:828;s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:830;s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:835;s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:836;s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:854;s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1368;s:2:\"id\";i:23275;s:5:\"title\";s:44:\"Classic | Contact | Digital Marketing Agency\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-agency-small.jpg\";s:12:\"tmpl_created\";i:1647799000;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-digital-marketing-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:857;s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:858;s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{s:4:\"tmpl\";i:861;s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{s:4:\"tmpl\";i:862;s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:863;s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:719;s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:720;s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:721;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:724;s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:727;s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:728;s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:730;s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:733;s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:735;s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:736;s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:16:{s:4:\"tmpl\";i:738;s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:190;a:16:{s:4:\"tmpl\";i:742;s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{s:4:\"tmpl\";i:743;s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:744;s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:34:\"Fly-In | Cta Popup | Dental Clinic\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/fly-in-cta-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:16:{s:4:\"tmpl\";i:752;s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:753;s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:208;a:16:{s:4:\"tmpl\";i:754;s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:210;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:757;s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:759;s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:760;s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:761;s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:763;s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:16:{s:4:\"tmpl\";i:766;s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:767;s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:16:{s:4:\"tmpl\";i:831;s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:16:{s:4:\"tmpl\";i:718;s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:239;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:240;a:16:{s:4:\"tmpl\";i:842;s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:244;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:246;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:248;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:250;a:16:{s:4:\"tmpl\";i:748;s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:253;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:16:{s:4:\"tmpl\";i:810;s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:257;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:260;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:263;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{s:4:\"tmpl\";i:834;s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:267;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:269;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:273;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:275;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:278;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:281;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:285;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:288;a:16:{s:4:\"tmpl\";i:797;s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:290;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:292;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:16:{s:4:\"tmpl\";i:779;s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:811;s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:299;a:16:{s:4:\"tmpl\";i:846;s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:303;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:749;s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:314;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:317;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:322;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:717;s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:778;s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:330;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:331;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:762;s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:336;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:746;s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:339;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:343;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:843;s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:847;s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:813;s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:833;s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:825;s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:403;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:16:{s:4:\"tmpl\";i:758;s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:16:{s:4:\"tmpl\";i:798;s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:755;s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:764;s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:16:{s:4:\"tmpl\";i:789;s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:433;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:435;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:723;s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:840;s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:832;s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:16:{s:4:\"tmpl\";i:747;s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:765;s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:844;s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{s:4:\"tmpl\";i:849;s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{s:4:\"tmpl\";i:739;s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:816;s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:486;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:806;s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:496;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:751;s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:502;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:729;s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:725;s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:838;s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:745;s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:16:{s:4:\"tmpl\";i:850;s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:839;s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{s:4:\"tmpl\";i:750;s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:852;s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{s:4:\"tmpl\";i:741;s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:16:{s:4:\"tmpl\";i:848;s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:823;s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:756;s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:16:{s:4:\"tmpl\";i:714;s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:576;a:16:{s:4:\"tmpl\";i:734;s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:578;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:580;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:582;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:584;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:774;s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:726;s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:737;s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:605;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:609;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:631;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:632;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:633;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:677;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:679;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:739;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:745;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:747;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:775;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:798;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:823;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:825;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:827;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:828;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:831;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:832;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:834;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:835;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:837;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:841;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:846;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:847;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:850;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:851;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:852;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:855;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:857;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:863;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:866;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:868;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:870;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:871;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:872;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:873;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:878;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:879;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:880;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:881;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:882;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:883;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:884;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:885;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(271,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:49:\"How Web Creators Can Start Live Streaming in 2022\";s:7:\"excerpt\";s:281:\"Web creators can gain great benefits from live streaming — displaying their work, generating engagement, and networking with other creators. Discover how to start live streaming on the web, from collecting the basic streaming gear to choosing the best platform for your audience.\";s:7:\"created\";i:1648003040;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:149:\"https://elementor.com/blog/how-web-creators-can-start-live-streaming-in-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:35:\"Elementor Websites of February 2022\";s:7:\"excerpt\";s:263:\"February’s showcase adds some much-needed color and excitement to the long wintery season. From high-end business technology and creative NFTs to underground urban paintings and community arts and so much in between, these websites offer something for everyone.\";s:7:\"created\";i:1647516309;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/showcase-february-2022/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:54:\"6 Top Ecommerce Security Threats and Solutions of 2022\";s:7:\"excerpt\";s:267:\"According to recent studies, 32% of direct and organic traffic to ecommerce sites comes from Invalid Traffic — bots, malicious users, or suspicious users. In this article, we will dive deeper into some of these threats and offer the best solutions to address them.\";s:7:\"created\";i:1647217020;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:144:\"https://elementor.com/blog/top-ecommerce-security-threats-and-solutions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:36:\"4 Women Making Moves in Web Creation\";s:7:\"excerpt\";s:173:\"Today is International Women’s Day, and what better way to celebrate girl power than with some inspiring stories from women web creators in our community across the globe.\";s:7:\"created\";i:1646738701;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:134:\"https://elementor.com/blog/women-making-moves-in-web-creation/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:75:\"The Opportunities and Challenges of Being a Female Web Entrepreneur in 2022\";s:7:\"excerpt\";s:305:\"While the web creates more equal opportunities, female founders secured only 2% of venture capital in the U.S. in 2021. Miriam Schwab, Co-founder and CEO of Strattic, shares her personal story and challenges as a female tech entrepreneur and why she firmly believes the future is bright for women in tech.\";s:7:\"created\";i:1646732431;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:149:\"https://elementor.com/blog/challenges-opportunities-for-female-entrepreneurs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(275,'mc4wp_version','4.8.6','yes'),(276,'ct_theme_options','a:187:{s:8:\"last_tab\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:8:\"dev_mode\";s:1:\"1\";s:17:\"show_page_loading\";s:1:\"1\";s:12:\"loading_type\";s:6:\"style9\";s:11:\"loading_img\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"mouse_move_animation\";s:0:\"\";s:16:\"newsletter_popup\";s:0:\"\";s:15:\"newslette_title\";s:0:\"\";s:14:\"newslette_desc\";s:0:\"\";s:20:\"newslette_close_text\";s:0:\"\";s:27:\"newslette_email_placeholder\";s:0:\"\";s:11:\"header_type\";s:6:\"layout\";s:13:\"header_layout\";s:2:\"24\";s:12:\"get_revslide\";s:0:\"\";s:11:\"hidden_logo\";s:4:\"show\";s:15:\"header_bg_color\";s:0:\"\";s:17:\"header_m_bg_color\";s:0:\"\";s:22:\"header_bg_color_sticky\";s:0:\"\";s:11:\"header_full\";s:0:\"\";s:9:\"sticky_on\";s:1:\"1\";s:11:\"search_icon\";s:1:\"1\";s:26:\"h_search_field_placeholder\";s:0:\"\";s:9:\"cart_icon\";s:0:\"\";s:17:\"cart_icon_sidebar\";s:0:\"\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:15:\"language_switch\";s:1:\"1\";s:13:\"h_mobile_type\";s:5:\"light\";s:8:\"h_style1\";s:8:\"h-style3\";s:18:\"phone_button_label\";s:0:\"\";s:17:\"phone_button_link\";s:0:\"\";s:21:\"h_social_facebook_url\";s:42:\"https://www.facebook.com/EaloorStudyAbroad\";s:20:\"h_social_twitter_url\";s:0:\"\";s:20:\"h_social_inkedin_url\";s:59:\"https://www.linkedin.com/company/ealoor-studyabroad-uk-ltd/\";s:22:\"h_social_instagram_url\";s:52:\"https://www.instagram.com/ealoor_study_abroad/?hl=en\";s:19:\"h_social_google_url\";s:0:\"\";s:18:\"h_social_skype_url\";s:0:\"\";s:22:\"h_social_pinterest_url\";s:0:\"\";s:18:\"h_social_vimeo_url\";s:0:\"\";s:20:\"h_social_youtube_url\";s:0:\"\";s:17:\"h_social_yelp_url\";s:0:\"\";s:19:\"h_social_tumblr_url\";s:0:\"\";s:24:\"h_social_tripadvisor_url\";s:0:\"\";s:8:\"h_topbar\";s:4:\"show\";s:15:\"topbar_bg_color\";s:7:\"#00aeef\";s:8:\"wellcome\";s:44:\"Welcome to our consulting company Consultio!\";s:13:\"h_phone_label\";s:22:\"Call Us: (210) 123-451\";s:7:\"h_phone\";s:14:\"+91 9995205566\";s:12:\"h_phone_link\";s:14:\"+91 9995205566\";s:19:\"h_phone_link_target\";s:5:\"_self\";s:15:\"h_address_label\";s:0:\"\";s:9:\"h_address\";s:0:\"\";s:14:\"h_address_link\";s:69:\"https://www.google.com/maps?q=380+St+Kilda+Road,+Melbourne,+Australia\";s:21:\"h_address_link_target\";s:5:\"_self\";s:12:\"h_time_label\";s:10:\"Mon - Fri:\";s:6:\"h_time\";s:17:\"9:00 am - 07.00pm\";s:11:\"h_time_link\";s:0:\"\";s:18:\"h_time_link_target\";s:5:\"_self\";s:13:\"h_email_label\";s:17:\"Mail us for help:\";s:7:\"h_email\";s:28:\"info@ealoorconsultancy.co.uk\";s:12:\"h_email_link\";s:28:\"info@ealoorconsultancy.co.uk\";s:19:\"h_email_link_target\";s:6:\"_blank\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:4:\"logo\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"logo_tagline\";s:0:\"\";s:9:\"logo_maxh\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:16:\"logo_maxh_sticky\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:12:\"logo_maxh_sm\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:9:\"font_menu\";a:7:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:19:\"hamburger_btn_color\";s:0:\"\";s:17:\"icon_has_children\";s:4:\"plus\";s:15:\"main_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:7:\"menu_fs\";s:2:\"15\";s:17:\"sticky_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:18:\"sub_menu_displayed\";s:9:\"sub-hover\";s:14:\"sub_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:16:\"sub_menu_bgcolor\";s:0:\"\";s:11:\"sub_menu_fs\";s:0:\"\";s:8:\"h_btn_on\";s:4:\"hide\";s:10:\"h_btn_text\";s:0:\"\";s:15:\"h_btn_link_type\";s:4:\"page\";s:10:\"h_btn_link\";s:0:\"\";s:17:\"h_btn_link_custom\";s:0:\"\";s:12:\"h_btn_target\";s:5:\"_self\";s:9:\"h_btn_on2\";s:4:\"hide\";s:11:\"h_btn_text2\";s:0:\"\";s:16:\"h_btn_link_type2\";s:4:\"page\";s:11:\"h_btn_link2\";s:0:\"\";s:18:\"h_btn_link_custom2\";s:0:\"\";s:13:\"h_btn_target2\";s:5:\"_self\";s:10:\"h_bg_popup\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"h_popup_logo\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"h_popup_facebook_url\";s:42:\"https://www.facebook.com/EaloorStudyAbroad\";s:19:\"h_popup_twitter_url\";s:0:\"\";s:19:\"h_popup_inkedin_url\";s:59:\"https://www.linkedin.com/company/ealoor-studyabroad-uk-ltd/\";s:21:\"h_popup_instagram_url\";s:52:\"https://www.instagram.com/ealoor_study_abroad/?hl=en\";s:17:\"h_popup_skype_url\";s:0:\"\";s:21:\"h_popup_pinterest_url\";s:0:\"\";s:17:\"h_popup_vimeo_url\";s:0:\"\";s:19:\"h_popup_youtube_url\";s:1:\"#\";s:16:\"h_popup_yelp_url\";s:0:\"\";s:18:\"h_popup_tumblr_url\";s:0:\"\";s:23:\"h_popup_tripadvisor_url\";s:0:\"\";s:9:\"pagetitle\";s:4:\"show\";s:9:\"ptitle_bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:14:\"ptitle_overlay\";s:4:\"show\";s:18:\"pagetitle_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:16:\"page_title_color\";s:0:\"\";s:18:\"page_title_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:21:\"page_title_padding_sm\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:20:\"ptitle_breadcrumb_on\";s:4:\"show\";s:16:\"breadcrumb_color\";s:0:\"\";s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:24:\"search_field_placeholder\";s:0:\"\";s:19:\"archive_sidebar_pos\";s:5:\"right\";s:15:\"archive_date_on\";s:1:\"1\";s:17:\"archive_author_on\";s:1:\"1\";s:21:\"archive_categories_on\";s:0:\"\";s:19:\"archive_comments_on\";s:1:\"1\";s:13:\"text_btn_more\";s:0:\"\";s:15:\"s_custom_header\";s:0:\"\";s:15:\"s_header_layout\";s:1:\"1\";s:18:\"s_custom_pagetitle\";s:7:\"default\";s:11:\"s_ptitle_bg\";a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:18:\"content_none_title\";s:0:\"\";s:17:\"content_none_desc\";s:0:\"\";s:16:\"post_sidebar_pos\";s:5:\"right\";s:12:\"post_date_on\";s:1:\"1\";s:14:\"post_author_on\";s:1:\"1\";s:18:\"post_categories_on\";s:1:\"1\";s:12:\"post_tags_on\";s:1:\"1\";s:8:\"f_crop_w\";s:3:\"900\";s:8:\"f_crop_h\";s:3:\"313\";s:18:\"post_navigation_on\";s:0:\"\";s:20:\"post_social_share_on\";s:1:\"1\";s:20:\"post_social_facebook\";s:1:\"1\";s:19:\"post_social_twitter\";s:1:\"1\";s:21:\"post_social_pinterest\";s:1:\"0\";s:21:\"post_social_linkedin \";s:1:\"0\";s:20:\"footer_layout_custom\";s:2:\"20\";s:13:\"back_totop_on\";s:4:\"show\";s:12:\"fixed_footer\";s:0:\"\";s:8:\"page_404\";s:7:\"default\";s:15:\"page_custom_404\";s:0:\"\";s:13:\"primary_color\";s:7:\"#00aeef\";s:15:\"secondary_color\";s:7:\"#2e3092\";s:11:\"third_color\";s:7:\"#00539a\";s:10:\"four_color\";s:7:\"#00539a\";s:10:\"link_color\";a:3:{s:7:\"regular\";s:7:\"#00aeef\";s:5:\"hover\";s:7:\"#2e3092\";s:6:\"active\";s:7:\"#2e3092\";}s:14:\"gradient_color\";a:2:{s:4:\"from\";s:7:\"#00aeef\";s:2:\"to\";s:7:\"#2e3092\";}s:17:\"button_type_color\";s:6:\"normal\";s:13:\"body_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"body_text_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:17:\"body_default_font\";s:6:\"Roboto\";s:9:\"font_main\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:20:\"heading_default_font\";s:7:\"Poppins\";s:7:\"font_h1\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:7:\"font_h2\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:7:\"font_h3\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:7:\"font_h4\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:7:\"font_h5\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:7:\"font_h6\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:13:\"custom_font_1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:23:\"custom_font_selectors_1\";s:0:\"\";s:10:\"gm_api_key\";s:39:\"AIzaSyC08_qdlXXCWiFNVj02d-L2BDK5qr6ZnfM\";s:16:\"site_header_code\";s:0:\"\";s:16:\"site_footer_code\";s:0:\"\";s:17:\"portfolio_display\";s:1:\"1\";s:14:\"portfolio_slug\";s:0:\"\";s:14:\"portfolio_name\";s:0:\"\";s:22:\"archive_portfolio_link\";s:0:\"\";s:15:\"service_display\";s:1:\"1\";s:12:\"service_slug\";s:0:\"\";s:12:\"service_name\";s:0:\"\";s:20:\"archive_service_link\";s:0:\"\";s:18:\"case_study_display\";s:1:\"1\";s:15:\"case_study_slug\";s:0:\"\";s:15:\"case_study_name\";s:0:\"\";s:23:\"archive_case_study_link\";s:0:\"\";s:15:\"courses_display\";s:0:\"\";s:12:\"courses_slug\";s:0:\"\";s:12:\"courses_name\";s:0:\"\";s:8:\"site_css\";s:0:\"\";s:15:\"e_header_layout\";s:0:\"\";s:22:\"e_header_layout_sticky\";s:0:\"\";}','yes'),(277,'ct_theme_options-transients','a:4:{s:14:\"changed_values\";a:1:{s:20:\"h_social_youtube_url\";s:1:\"#\";}s:9:\"last_save\";i:1646040915;s:13:\"last_compiler\";i:1646040885;s:11:\"last_import\";i:1646040885;}','yes'),(278,'newsletter_page','9','no'),(281,'has_transient','1','yes'),(282,'track_transient','0','yes'),(283,'_elementor_installed_time','1642153399','yes'),(284,'mc4wp_flash_messages','a:0:{}','no'),(295,'ct_ie_demo_installed','finance-4','yes'),(299,'recovery_mode_email_last_sent','1642404906','yes'),(322,'product_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(323,'ct_page_options','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(324,'post_format_audio','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(325,'post_format_link','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(326,'post_format_quote','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(327,'post_format_video','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(328,'post_format_gallery','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(329,'service_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(330,'courses_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(331,'portfolio_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(332,'case_study_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(333,'post_option','a:12:{s:17:\"_wp_page_template\";s:7:\"default\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-post\";s:18:\"_elementor_version\";s:5:\"3.5.5\";s:16:\"post_views_count\";s:1:\"0\";s:15:\"_elementor_data\";s:10788:\"[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]\";s:14:\"slide_template\";s:0:\"\";s:16:\"rs_page_bg_color\";s:0:\"\";s:25:\"_elementor_controls_usage\";a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}s:22:\"_elementor_page_assets\";a:0:{}s:10:\"_edit_lock\";s:12:\"1646370690:1\";s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}}','yes'),(334,'ct_page_options-transients','a:1:{s:14:\"changed_values\";a:0:{}}','yes'),(337,'extendifysdk_sitesettings','{\"state\":{\"enabled\":true},\"version\":0}','yes'),(338,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(339,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(340,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(345,'elementor_clear_cache','','yes'),(346,'elementor_reset_api_data','','yes'),(348,'elementor_enable_inspector','','yes'),(349,'elementor_replace_url','','yes'),(350,'elementor_rollback','','yes'),(351,'elementor_re_migrate_globals_separator','','yes'),(352,'elementor_re_migrate_globals','','yes'),(353,'elementor_beta','no','yes'),(354,'elementor_maintenance_mode_mode','','yes'),(355,'elementor_maintenance_mode_exclude_mode','logged_in','yes'),(356,'elementor_maintenance_mode_exclude_roles','a:0:{}','yes'),(357,'elementor_maintenance_mode_template_id','','yes'),(473,'elementor_safe_mode','yes','yes'),(489,'elementor_log','a:11:{s:32:\"93f88fdd60c5de65f34b6f7055e6d53e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:104:\"C:\\xampp\\htdocs\\ealoorconsultancy\\wp-content\\plugins\\elementor\\core\\app\\modules\\import-export\\module.php\";s:7:\"\0*\0line\";i:91;s:7:\"\0*\0date\";s:19:\"2022-01-14 13:43:22\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:54:\"Trying to get property &#039;label&#039; of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-14 13:43:22\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:44:\"Trying to get property \'label\' of non-object\";s:4:\"file\";s:104:\"C:\\xampp\\htdocs\\ealoorconsultancy\\wp-content\\plugins\\elementor\\core\\app\\modules\\import-export\\module.php\";s:4:\"line\";i:91;s:5:\"trace\";b:1;}}s:32:\"dfd98de5dd6d1f8386f854a9721504f1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-31 04:07:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-31 04:07:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5a7c9ce9272cffdb12f30a1f2744d6c5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-31 04:07:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-31 04:07:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"cf0ba01208ce55bed3ac721cd06f6943\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-31 04:07:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-31 04:07:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"0d7f705be8925f3f1c6ef0f68c76aafe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-31 04:07:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-31 04:07:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"3f683adea45b36dc5a7d54f9b74b1335\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-01-31 04:07:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-01-31 04:07:43\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.3\";s:2:\"to\";s:5:\"3.5.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"52000c095289063804f6a7016f02f1b7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-14 04:08:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-14 04:08:27\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"353a394513be46cbceda3e8cb06a525d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-14 04:08:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-14 04:08:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"b86071e073dc809b1d9f5bfe80f661f1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-14 04:08:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-14 04:08:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e27fcdec25cfeb86f88eb0f527596e12\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-14 04:08:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-14 04:08:30\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"f6a149f87a91d4142f464636ba3cd61d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2022-02-14 04:08:30\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-14 04:08:30\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.5.4\";s:2:\"to\";s:5:\"3.5.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no'),(491,'theme_mods_ealoor','a:5:{s:18:\"custom_css_post_id\";i:8706;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:44;}s:16:\"ct_theme_options\";a:43:{s:20:\"footer_layout_custom\";s:2:\"20\";s:7:\"favicon\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:8:\"dev_mode\";s:1:\"1\";s:17:\"show_page_loading\";s:1:\"1\";s:12:\"loading_type\";s:6:\"style9\";s:13:\"header_layout\";s:2:\"24\";s:9:\"sticky_on\";s:1:\"1\";s:11:\"search_icon\";s:1:\"1\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:15:\"language_switch\";s:1:\"1\";s:8:\"h_style1\";s:8:\"h-style3\";s:8:\"wellcome\";s:57:\"Welcome to our consulting company <span>Consultio!</span>\";s:13:\"h_phone_label\";s:22:\"Call Us: (210) 123-451\";s:7:\"h_phone\";s:14:\"+91 9995205566\";s:12:\"h_phone_link\";s:14:\"+91 9995205566\";s:15:\"h_address_label\";s:0:\"\";s:9:\"h_address\";s:0:\"\";s:14:\"h_address_link\";s:69:\"https://www.google.com/maps?q=380+St+Kilda+Road,+Melbourne,+Australia\";s:12:\"h_time_label\";s:10:\"Mon - Fri:\";s:6:\"h_time\";s:17:\"9:00 am - 07.00pm\";s:13:\"h_email_label\";s:17:\"Mail us for help:\";s:7:\"h_email\";s:28:\"info@ealoorconsultancy.co.uk\";s:12:\"h_email_link\";s:28:\"info@ealoorconsultancy.co.uk\";s:19:\"h_email_link_target\";s:6:\"_blank\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:4:\"logo\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"h_popup_logo\";a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"primary_color\";s:7:\"#007ef2\";s:11:\"third_color\";s:7:\"#00aeef\";s:10:\"four_color\";s:7:\"#0045ac\";s:17:\"button_type_color\";s:6:\"normal\";s:15:\"topbar_bg_color\";s:7:\"#00aeef\";s:9:\"pagetitle\";s:4:\"show\";s:14:\"ptitle_overlay\";s:4:\"show\";s:21:\"h_social_facebook_url\";s:1:\"#\";s:22:\"h_social_instagram_url\";s:0:\"\";s:24:\"h_social_tripadvisor_url\";s:0:\"\";s:20:\"h_social_youtube_url\";s:1:\"#\";s:20:\"h_popup_facebook_url\";s:42:\"https://www.facebook.com/EaloorStudyAbroad\";s:19:\"h_popup_inkedin_url\";s:59:\"https://www.linkedin.com/company/ealoor-studyabroad-uk-ltd/\";s:19:\"h_popup_twitter_url\";s:0:\"\";s:21:\"h_popup_instagram_url\";s:52:\"https://www.instagram.com/ealoor_study_abroad/?hl=en\";}s:16:\"header_textcolor\";s:0:\"\";s:11:\"custom_logo\";i:9038;}','yes'),(495,'meks_admin_notice_info','1','yes'),(529,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":5,\"critical\":2}','yes'),(656,'elementor_safe_mode_allowed_plugins','a:1:{s:9:\"elementor\";s:23:\"elementor/elementor.php\";}','yes'),(657,'elementor_safe_mode_created_mu_dir','1','yes'),(658,'elementor_safe_mode_token','14e823006af949a338a04de787f29d9d','yes'),(659,'theme_mods_elementor-safe','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(710,'category_children','a:0:{}','yes'),(711,'portfolio-category_children','a:0:{}','yes'),(712,'service-category_children','a:0:{}','yes'),(714,'elementor_library_category_children','a:0:{}','yes'),(801,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(806,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(807,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(899,'rs_cache_overlay','6.5.14','yes'),(900,'revslider_update_revision_current','6.4.10','yes'),(1348,'post_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','yes'),(1503,'case_study_option-transients','a:1:{s:14:\"changed_values\";a:0:{}}','yes'),(1514,'case-study-category_children','a:0:{}','yes'),(1639,'cht_created_on','2022-01-19','yes'),(1640,'cht_devices','','yes'),(1641,'cht_position','left','yes'),(1642,'cht_cta','Contact us','yes'),(1643,'cht_numb_slug','Phone,Whatsapp,','yes'),(1644,'cht_social_whatsapp','a:31:{s:5:\"value\";s:14:\"+91 9995377366\";s:11:\"full_number\";s:13:\"+919995377366\";s:10:\"is_desktop\";s:7:\"checked\";s:9:\"is_mobile\";s:7:\"checked\";s:15:\"embedded_window\";s:3:\"yes\";s:16:\"embedded_message\";s:29:\"<p>How can I help you? :)</p>\";s:15:\"is_default_open\";s:2:\"no\";s:8:\"bg_color\";s:7:\"#49E670\";s:5:\"title\";s:8:\"WhatsApp\";s:18:\"contact_form_title\";s:10:\"Contact Us\";s:4:\"name\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:15:\"Enter your name\";}s:5:\"email\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:24:\"Enter your email address\";}s:5:\"phone\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:23:\"Enter your phone number\";}s:7:\"message\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:18:\"Enter your message\";}s:17:\"button_text_color\";s:7:\"#ffffff\";s:15:\"button_bg_color\";s:7:\"#A886CD\";s:11:\"button_text\";s:4:\"Chat\";s:14:\"thanks_message\";s:34:\"Your message was sent successfully\";s:15:\"redirect_action\";s:2:\"no\";s:13:\"redirect_link\";s:0:\"\";s:15:\"link_in_new_tab\";s:2:\"no\";s:16:\"close_form_after\";s:2:\"no\";s:24:\"close_form_after_seconds\";s:1:\"3\";s:19:\"send_leads_in_email\";s:2:\"no\";s:18:\"save_leads_locally\";s:3:\"yes\";s:13:\"email_address\";s:0:\"\";s:11:\"sender_name\";s:0:\"\";s:13:\"email_subject\";s:44:\"New lead from Chaty - {name} - {date} {hour}\";s:10:\"new_window\";s:1:\"1\";s:9:\"link_type\";s:8:\"personal\";s:16:\"use_whatsapp_web\";s:3:\"yes\";}','yes'),(1645,'cht_social_phone','a:27:{s:5:\"value\";s:0:\"\";s:10:\"is_desktop\";s:7:\"checked\";s:9:\"is_mobile\";s:7:\"checked\";s:8:\"bg_color\";s:7:\"#03E78B\";s:5:\"title\";s:5:\"Phone\";s:18:\"contact_form_title\";s:10:\"Contact Us\";s:4:\"name\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:15:\"Enter your name\";}s:5:\"email\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:24:\"Enter your email address\";}s:5:\"phone\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:23:\"Enter your phone number\";}s:7:\"message\";a:3:{s:9:\"is_active\";s:3:\"yes\";s:11:\"is_required\";s:3:\"yes\";s:11:\"placeholder\";s:18:\"Enter your message\";}s:17:\"button_text_color\";s:7:\"#ffffff\";s:15:\"button_bg_color\";s:7:\"#A886CD\";s:11:\"button_text\";s:4:\"Chat\";s:14:\"thanks_message\";s:34:\"Your message was sent successfully\";s:15:\"redirect_action\";s:2:\"no\";s:13:\"redirect_link\";s:0:\"\";s:15:\"link_in_new_tab\";s:2:\"no\";s:16:\"close_form_after\";s:2:\"no\";s:24:\"close_form_after_seconds\";s:1:\"3\";s:19:\"send_leads_in_email\";s:2:\"no\";s:18:\"save_leads_locally\";s:3:\"yes\";s:13:\"email_address\";s:0:\"\";s:11:\"sender_name\";s:0:\"\";s:13:\"email_subject\";s:44:\"New lead from Chaty - {name} - {date} {hour}\";s:10:\"new_window\";s:1:\"1\";s:9:\"link_type\";s:8:\"personal\";s:16:\"use_whatsapp_web\";s:3:\"yes\";}','yes'),(1646,'cht_widget_size','54','yes'),(1647,'widget_icon','chat-base','yes'),(1648,'cht_widget_img','','yes'),(1649,'cht_color','#86CD91','yes'),(1650,'chaty_intro_popup','show','yes'),(1651,'Chaty_show_affiliate_box_after','2022-01-24','yes'),(1652,'chaty_show_review_box_after','2022-01-26','yes'),(1653,'chaty_update_message','2','yes'),(1654,'cht_social_Facebook_Messenger','','yes'),(1655,'cht_social_SMS','','yes'),(1656,'cht_social_Instagram','','yes'),(1657,'cht_social_Telegram','','yes'),(1658,'cht_social_Line','','yes'),(1659,'cht_social_WeChat','','yes'),(1660,'cht_social_Twitter','','yes'),(1661,'cht_social_Google_Maps','','yes'),(1662,'cht_social_Slack','','yes'),(1663,'cht_social_Email','','yes'),(1664,'cht_social_Skype','','yes'),(1665,'cht_social_Snapchat','','yes'),(1666,'cht_social_Linkedin','','yes'),(1667,'cht_social_Viber','','yes'),(1668,'cht_social_Vkontakte','','yes'),(1669,'cht_social_TikTok','','yes'),(1670,'cht_social_Waze','','yes'),(1671,'cht_social_Poptin','','yes'),(1672,'cht_social_Link','','yes'),(1673,'cht_social_Custom_Link','','yes'),(1674,'cht_social_Custom_Link_3','','yes'),(1675,'cht_social_Custom_Link_4','','yes'),(1676,'cht_social_Custom_Link_5','','yes'),(1677,'cht_social_Contact_Us','','yes'),(1678,'cht_custom_color','','yes'),(1679,'cht_widget_font','','yes'),(1680,'positionSide','','yes'),(1681,'cht_bottom_spacing','','yes'),(1682,'cht_side_spacing','','yes'),(1683,'cht_cta_switcher','','yes'),(1684,'chaty_attention_effect','','yes'),(1685,'chaty_default_state','click','yes'),(1686,'chaty_trigger_on_time','yes','yes'),(1687,'chaty_trigger_time','0','yes'),(1688,'chaty_trigger_on_exit','no','yes'),(1689,'chaty_trigger_on_scroll','no','yes'),(1690,'chaty_trigger_on_page_scroll','0','yes'),(1691,'cht_close_button','yes','yes'),(1692,'cht_close_button_text','Hide','yes'),(1693,'chaty_icons_view','vertical','yes'),(1694,'cht_widget_title','','yes'),(1695,'cht_active','1','yes'),(1696,'cht_cta_action','click','yes'),(1697,'cht_cta_text_color','#333333','yes'),(1698,'cht_cta_bg_color','#ffffff','yes'),(1699,'cht_pending_messages','off','yes'),(1700,'cht_number_of_messages','1','yes'),(1701,'cht_number_color','#ffffff','yes'),(1702,'cht_number_bg_color','#dd0000','yes'),(1703,'cht_license_key','','yes'),(1704,'chaty_updated_on','1642589897','yes'),(1722,'qlwapp','a:7:{s:3:\"box\";a:0:{}s:6:\"button\";a:13:{s:6:\"layout\";s:6:\"bubble\";s:3:\"box\";s:3:\"yes\";s:7:\"rounded\";s:3:\"yes\";s:8:\"position\";s:11:\"bottom-left\";s:4:\"icon\";s:20:\"qlwapp-whatsapp-icon\";s:4:\"text\";s:19:\"How can I help you?\";s:5:\"phone\";s:11:\"12057948080\";s:7:\"message\";s:111:\"Hello! I\'m testing the Social Chat plugin https://quadlayers.com/whatsapp-chat-landing/?utm_source=qlwapp_admin\";s:8:\"timefrom\";s:5:\"00:00\";s:6:\"timeto\";s:5:\"00:00\";s:8:\"timezone\";s:5:\"UTC+0\";s:24:\"qlwapp_button_form_nonce\";s:10:\"735e7b3456\";s:16:\"_wp_http_referer\";s:56:\"/ealoorconsultancy/wp-admin/admin.php?page=qlwapp_button\";}s:4:\"chat\";a:0:{}s:8:\"contacts\";a:1:{i:0;a:17:{s:2:\"id\";s:1:\"0\";s:5:\"order\";i:1;s:6:\"active\";i:1;s:4:\"chat\";b:1;s:9:\"auto_open\";b:0;s:6:\"avatar\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:5:\"phone\";s:10:\"9995377366\";s:9:\"firstname\";s:7:\"Ealoor \";s:8:\"lastname\";s:11:\"Consultancy\";s:5:\"label\";s:7:\"Support\";s:7:\"message\";s:111:\"Hello! I\'m testing the Social Chat plugin https://quadlayers.com/whatsapp-chat-landing/?utm_source=qlwapp_admin\";s:8:\"timefrom\";s:5:\"00:00\";s:6:\"timeto\";s:5:\"00:00\";s:8:\"timezone\";s:5:\"UTC+0\";s:7:\"timeout\";s:8:\"readonly\";s:8:\"timedays\";a:0:{}s:7:\"display\";a:4:{s:7:\"devices\";s:3:\"all\";s:6:\"target\";a:1:{s:7:\"include\";s:1:\"1\";}s:7:\"entries\";a:9:{s:4:\"post\";a:1:{s:7:\"include\";s:1:\"1\";}s:4:\"page\";a:1:{s:7:\"include\";s:1:\"1\";}s:9:\"portfolio\";a:1:{s:7:\"include\";s:1:\"1\";}s:7:\"service\";a:1:{s:7:\"include\";s:1:\"1\";}s:10:\"case-study\";a:1:{s:7:\"include\";s:1:\"1\";}s:7:\"courses\";a:1:{s:7:\"include\";s:1:\"1\";}s:6:\"header\";a:1:{s:7:\"include\";s:1:\"1\";}s:6:\"footer\";a:1:{s:7:\"include\";s:1:\"1\";}s:14:\"e-landing-page\";a:1:{s:7:\"include\";s:1:\"1\";}}s:10:\"taxonomies\";a:5:{s:8:\"category\";a:1:{s:7:\"include\";s:1:\"1\";}s:8:\"post_tag\";a:1:{s:7:\"include\";s:1:\"1\";}s:18:\"portfolio-category\";a:1:{s:7:\"include\";s:1:\"1\";}s:16:\"service-category\";a:1:{s:7:\"include\";s:1:\"1\";}s:19:\"case-study-category\";a:1:{s:7:\"include\";s:1:\"1\";}}}}}s:7:\"display\";a:0:{}s:6:\"scheme\";a:0:{}s:7:\"license\";a:0:{}}','yes'),(1731,'njt_wa_review','1642677830','yes'),(1732,'njt_wa_first_time_active','1','yes'),(1733,'njt_popup_filebird_cross','1642677830','yes'),(1734,'njt_notification_filebird_cross','1642677830','yes'),(1735,'njt_wa_version','3.1.4','yes'),(1736,'nta_wa_restored','1','yes'),(1740,'nta_wa_widget_styles','a:18:{s:5:\"title\";s:20:\"Start a Conversation\";s:12:\"responseText\";s:44:\"The team typically replies in a few minutes.\";s:11:\"description\";s:70:\"Hi! Click one of our member below to chat on <strong>WhatsApp</strong>\";s:15:\"backgroundColor\";s:7:\"#2db742\";s:9:\"textColor\";s:4:\"#fff\";s:12:\"scrollHeight\";s:3:\"500\";s:12:\"isShowScroll\";s:3:\"OFF\";s:18:\"isShowResponseText\";s:3:\"OFF\";s:15:\"isShowPoweredBy\";s:2:\"ON\";s:8:\"btnLabel\";s:40:\"Need Help? <strong>Chat with us</strong>\";s:13:\"btnLabelWidth\";s:3:\"162\";s:11:\"btnPosition\";s:5:\"right\";s:15:\"btnLeftDistance\";s:2:\"30\";s:16:\"btnRightDistance\";s:2:\"30\";s:17:\"btnBottomDistance\";s:2:\"97\";s:14:\"isShowBtnLabel\";s:2:\"ON\";s:10:\"isShowGDPR\";s:3:\"OFF\";s:11:\"gdprContent\";s:115:\"Please accept our <a href=\"https://ninjateam.org/privacy-policy/\">privacy policy</a> first to start a conversation.\";}','yes'),(1741,'nta_wa_widget_display','a:6:{s:16:\"displayCondition\";s:12:\"excludePages\";s:12:\"includePages\";a:0:{}s:12:\"excludePages\";a:0:{}s:13:\"showOnDesktop\";s:2:\"ON\";s:12:\"showOnMobile\";s:2:\"ON\";s:12:\"time_symbols\";s:3:\"h:m\";}','yes'),(2586,'db_upgraded','','yes'),(2667,'can_compress_scripts','0','no'),(3316,'sbi_cron_report','a:1:{s:5:\"notes\";a:2:{s:8:\"time_ran\";s:19:\"2022-05-19 03:57:10\";s:20:\"num_found_transients\";i:0;}}','no'),(3322,'_elementor_global_css','a:6:{s:4:\"time\";i:1644812218;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(3323,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:33:{s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:9:\"ct_button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:8:\"ct_image\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:14:\"ct_text_editor\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:10:\"ct_heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:7:\"divider\";a:2:{s:7:\"content\";s:3742:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:13:\"ct_newsletter\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:7:\"ct_icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:15:\"ct_contact_info\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:13:\"image-gallery\";a:2:{s:7:\"content\";s:2473:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:17:\"slider_revolution\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:22:\"ct_case_study_carousel\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:12:\"ct_fancy_box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:15:\"ct_video_player\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:23:\"ct_testimonial_carousel\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:17:\"ct_carousel_arrow\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:16:\"ct_blog_carousel\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:12:\"ct_accordion\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:7:\"ct_ctf7\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:15:\"ct_clients_list\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5235:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:7:\"ct_menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:1989:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:178:\"<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:5:\"3.5.5\";}s:7:\"ct_list\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:6:\"ct_cta\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:17:\"ct_fancy_box_grid\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:15:\"ct_service_grid\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:12:\"ct_menu_item\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:19:\"ct_testimonial_grid\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}s:12:\"ct_blog_grid\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.5\";}}}}','yes'),(3600,'WPLANG','','yes'),(3601,'new_admin_email','info@ealoorconsultancy.co.uk','yes'),(4730,'site_logo','9038','yes'),(4733,'_transient_is_multi_author','0','yes'),(4786,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1652932633;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(5004,'_transient_timeout_global_styles_ealoor','1652932690','no'),(5005,'_transient_global_styles_ealoor','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(5006,'_transient_timeout_global_styles_svg_filters_ealoor','1652932691','no'),(5007,'_transient_global_styles_svg_filters_ealoor','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(5009,'_transient_timeout_tnp_extensions_json','1653191834','no'),(5010,'_transient_tnp_extensions_json','[{\"id\":\"101\",\"children_fileid\":\"\",\"version\":\"1.0.6\",\"title\":\"Gravity Forms\",\"description\":\"Integration between Gravity Forms and Newsletter to collect subscriptions directly from Gravity designed forms.\",\"slug\":\"newsletter-gravityforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/gravityforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/gravityforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=101\",\"wp_slug\":\"newsletter-gravityforms\\/gravityforms.php\"},{\"id\":\"100\",\"children_fileid\":\"\",\"version\":\"1.0.2\",\"title\":\"Easy Digital Downloads\",\"description\":\"The Newsletter Plugin integration for Easy Digital Downloads.\",\"slug\":\"newsletter-edd\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/edd-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/edd.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=100\",\"wp_slug\":\"newsletter-edd\\/edd.php\"},{\"id\":\"99\",\"children_fileid\":\"\",\"version\":\"1.0.4\",\"title\":\"Elementor Forms Addon\",\"description\":\"Integrates Elementor forms with Newsletter to collect subscription by forms created with Elementor.\",\"slug\":\"newsletter-elementor\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/elementor-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/elementor.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=99\",\"wp_slug\":\"newsletter-elementor\\/elementor.php\"},{\"id\":\"93\",\"children_fileid\":\"\",\"version\":\"1.0.2\",\"title\":\"External SMTP\",\"description\":\"Add SMTP support to Newsletter for sending emails.\",\"slug\":\"newsletter-smtp\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/smtp-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"4\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=93\",\"wp_slug\":\"newsletter-smtp\\/smtp.php\"},{\"id\":\"90\",\"children_fileid\":\"\",\"version\":\"1.1.1\",\"title\":\"Sendinblue\",\"description\":\"Integration with Sendinblue mailing service.\",\"slug\":\"newsletter-sendinblue\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sendinblue-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=90\",\"wp_slug\":\"newsletter-sendinblue\\/sendinblue.php\"},{\"id\":\"87\",\"children_fileid\":\"\",\"version\":\"1.0.5\",\"title\":\"Speed and Delivery Hours Control\",\"description\":\"Configure a different delivery speed for each newsletter and the delivery hours window. Only for regular newsletters.\",\"slug\":\"newsletter-speedcontrol\",\"type\":\"legacy\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/12\\/speedcontrol.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=87\",\"wp_slug\":\"newsletter-speedcontrol\\/speedcontrol.php\"},{\"id\":\"85\",\"children_fileid\":\"\",\"version\":\"1.1.8\",\"title\":\"Addons Manager\",\"description\":\"\",\"slug\":\"newsletter-extensions\",\"type\":\"manager\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"\",\"status\":\"4\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=85\",\"wp_slug\":\"newsletter-extensions\\/extensions.php\"},{\"id\":\"61\",\"children_fileid\":\"\",\"version\":\"4.2.6\",\"title\":\"Contact Form 7\",\"description\":\"Adds the newsletter subscription feature to your Contact Form 7 forms.\",\"slug\":\"newsletter-cf7\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/contact-form-7-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/users-32px-outline_badge-13.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=61\",\"wp_slug\":\"newsletter-cf7\\/cf7.php\"},{\"id\":\"83\",\"children_fileid\":\"\",\"version\":\"1.0.8\",\"title\":\"Ninja Forms Integration\",\"description\":\"Integrate Ninja Forms with Newsletter collecting subscription from your contact form.\",\"slug\":\"newsletter-ninjaforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/ninjaforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/ninjaforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=83\",\"wp_slug\":\"newsletter-ninjaforms\\/ninjaforms.php\"},{\"id\":\"84\",\"children_fileid\":\"\",\"version\":\"1.1.2\",\"title\":\"WP Forms Integration\",\"description\":\"Integration with WP-Forms plugin. You can add a subscription option to your contact forms.\",\"slug\":\"newsletter-wpforms\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/wpforms-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/wpforms.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=84\",\"wp_slug\":\"newsletter-wpforms\\/wpforms.php\"},{\"id\":\"72\",\"children_fileid\":\"\",\"version\":\"1.3.8\",\"title\":\"Autoresponder\",\"description\":\"Create unlimited email series to follow-up your subscribers. Lessons, up-sells, conversations.\",\"slug\":\"newsletter-autoresponder\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/autoresponder\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/emoticons-32px-outline_robot.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=72\",\"wp_slug\":\"newsletter-autoresponder\\/autoresponder.php\"},{\"id\":\"77\",\"children_fileid\":\"\",\"version\":\"2.2.3\",\"title\":\"Newsletter API\",\"description\":\"Access programmatically to The Newsletter Plugin via REST calls.\",\"slug\":\"newsletter-api\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-api-2\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=77\",\"wp_slug\":\"newsletter-api\\/api.php\"},{\"id\":\"75\",\"children_fileid\":\"\",\"version\":\"1.1.7\",\"title\":\"Geolocation\",\"description\":\"Geolocate the subscribers and target them by geolocation in your campaign.\",\"slug\":\"newsletter-geo\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/geolocation-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/geo-extension-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=75\",\"wp_slug\":\"newsletter-geo\\/geo.php\"},{\"id\":\"74\",\"children_fileid\":\"\",\"version\":\"1.3.8\",\"title\":\"Extended Composer Blocks\",\"description\":\"Adds new blocks to the newsletter composer: list, video, gallery, full post.\",\"slug\":\"newsletter-blocks\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/composer\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=74\",\"wp_slug\":\"newsletter-blocks\\/blocks.php\"},{\"id\":\"70\",\"children_fileid\":\"\",\"version\":\"1.0.9\",\"title\":\"Subscribe on Comment\",\"description\":\"Adds the subscription option to your blog comment form\",\"slug\":\"newsletter-comments\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/comments-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/02\\/comment-notification.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=70\",\"wp_slug\":\"newsletter-comments\\/comments.php\"},{\"id\":\"68\",\"children_fileid\":\"\",\"version\":\"1.1.6\",\"title\":\"Google Analytics\",\"description\":\"Automatically add Google Analytics UTM campaign tracking to links\",\"slug\":\"newsletter-analytics\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/google-analytics\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/analytics.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=68\",\"wp_slug\":\"newsletter-analytics\\/analytics.php\"},{\"id\":\"50\",\"children_fileid\":\"\",\"version\":\"4.4.4\",\"title\":\"Reports\",\"description\":\"Shows tables and diagrams of the collected data (opens, clicks, ...).\",\"slug\":\"newsletter-reports\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/reports\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/business-32px-outline_chart-bar-33.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=50\",\"wp_slug\":\"newsletter-reports\\/reports.php\"},{\"id\":\"63\",\"children_fileid\":\"\",\"version\":\"1.7.5\",\"title\":\"WooCommerce\",\"description\":\"The Newsletter Plugin integration for WooCommerce\\u2122. Unleash your marketing powers.\",\"slug\":\"newsletter-woocommerce\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/woocommerce\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/woocommerce-extension-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=63\",\"wp_slug\":\"newsletter-woocommerce\\/woocommerce.php\"},{\"id\":\"62\",\"children_fileid\":\"\",\"version\":\"4.5.5\",\"title\":\"Automated\",\"description\":\"Automatically creates periodic newsletters with your blog contents. Multichannel.\",\"slug\":\"newsletter-automated\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/automated\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/03\\/automated-32.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=62\",\"wp_slug\":\"newsletter-automated\\/automated.php\"},{\"id\":\"86\",\"children_fileid\":\"\",\"version\":\"1.3.3\",\"title\":\"Advanced Import\",\"description\":\"An advanced import system with extended profile fields and mapping (beta version).\",\"slug\":\"newsletter-import\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/advanced-import\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/file-upload-88.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=86\",\"wp_slug\":\"newsletter-import\\/import.php\"},{\"id\":\"55\",\"children_fileid\":\"\",\"version\":\"4.0.9\",\"title\":\"Facebook\",\"description\":\"One click subscription and confirmation with Facebook Connect.\",\"slug\":\"newsletter-facebook\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/facebook-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/08\\/facebook.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=55\",\"wp_slug\":\"newsletter-facebook\\/facebook.php\"},{\"id\":\"91\",\"children_fileid\":\"\",\"version\":\"1.0.2\",\"title\":\"Instasend\",\"description\":\"Quickly create a newsletter from a post (free for limited time)\",\"slug\":\"newsletter-instasend\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/instasend\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2020\\/05\\/instasend-32.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=91\",\"wp_slug\":\"newsletter-instasend\\/instasend.php\"},{\"id\":\"82\",\"children_fileid\":\"\",\"version\":\"1.0.0\",\"title\":\"Translatepress Bridge\",\"description\":\"Enables few multilanguage Newsletter features for who is using Translatepress.\",\"slug\":\"newsletter-translatepress\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/translatepress-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/09\\/translatepress.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=82\",\"wp_slug\":\"newsletter-translatepress\\/translatepress.php\"},{\"id\":\"79\",\"children_fileid\":\"\",\"version\":\"1.1.8\",\"title\":\"Events Manager Integration\",\"description\":\"Integrates with Events Manager plugin to add events in your regular and automated newsletters.\",\"slug\":\"newsletter-events\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/events-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/events-manager-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=79\",\"wp_slug\":\"newsletter-events\\/events.php\"},{\"id\":\"76\",\"children_fileid\":\"\",\"version\":\"1.1.9\",\"title\":\"Bounce Management\",\"description\":\"This experimental extension manages the bounces and keeps the list clean of invalid addresses.\",\"slug\":\"newsletter-bounce\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/bounce-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/ic_settings_backup_restore_32px.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=76\",\"wp_slug\":\"newsletter-bounce\\/bounce.php\"},{\"id\":\"88\",\"children_fileid\":\"\",\"version\":\"1.2.1\",\"title\":\"The Events Calendar (by Tribe)\",\"description\":\"Adds a composer block which extracts the events managed by The Events Calendar plugin.\",\"slug\":\"newsletter-tribeevents\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/tribeevents-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/tribe-event-calendar-icon.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=88\",\"wp_slug\":\"newsletter-tribeevents\\/tribeevents.php\"},{\"id\":\"97\",\"children_fileid\":\"\",\"version\":\"1.0.5\",\"title\":\"Webhooks\",\"description\":\"Adds webhooks to trigger external services upon subscription and cancellation events.\",\"slug\":\"newsletter-webhooks\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-webhooks\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=97\",\"wp_slug\":\"newsletter-webhooks\\/webhooks.php\"},{\"id\":\"67\",\"children_fileid\":\"\",\"version\":\"1.2.8\",\"title\":\"Leads\",\"description\":\"Add a popup or a fixed subscription bar to your website and offer your visitors a simple way to subscribe.\",\"slug\":\"newsletter-leads\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/leads\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=67\",\"wp_slug\":\"newsletter-leads\\/leads.php\"},{\"id\":\"73\",\"children_fileid\":\"\",\"version\":\"1.2.9\",\"title\":\"WP Users Integration\",\"description\":\"Connects the WordPress user registration with Newsletter subscription. Optionally imports all WP users as subscribers.\",\"slug\":\"newsletter-wpusers\",\"type\":\"integration\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/wpusers-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/09\\/wpusers.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=73\",\"wp_slug\":\"newsletter-wpusers\\/wpusers.php\"},{\"id\":\"71\",\"children_fileid\":\"\",\"version\":\"1.1.3\",\"title\":\"Locked Content\",\"description\":\"Boost your subscription rate locking out your premium contents with a subscription form.\",\"slug\":\"newsletter-lock\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/locked-content-extension\\/\",\"image\":\"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-1_lock-open.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=71\",\"wp_slug\":\"newsletter-lock\\/lock.php\"},{\"id\":\"58\",\"children_fileid\":\"\",\"version\":\"4.0.7\",\"title\":\"Public Archive\",\"description\":\"Generates a public archive of the sent newsletters for your blog.\",\"slug\":\"newsletter-archive\",\"type\":\"extension\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/extended-features\\/archive-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/files-32px-outline_archive-3d-content.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=58\",\"wp_slug\":\"newsletter-archive\\/archive.php\"},{\"id\":\"54\",\"children_fileid\":\"\",\"version\":\"4.1.3\",\"title\":\"Followup\",\"description\":\"Automated email series sent upon subscription at defined intervals.\",\"slug\":\"newsletter-followup\",\"type\":\"legacy\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/follow-up-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-2_time-countdown.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=54\",\"wp_slug\":\"newsletter-followup\\/followup.php\"},{\"id\":\"53\",\"children_fileid\":null,\"version\":\"2.2.0\",\"title\":\"Popup\",\"description\":\"Configurable popup system to increase the subscription rate.\",\"slug\":\"newsletter-popup\",\"type\":\"legacy\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/popup-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=53\",\"wp_slug\":\"newsletter-popup\\/popup.php\"},{\"id\":\"51\",\"children_fileid\":\"\",\"version\":\"4.1.3\",\"title\":\"Feed by Mail\",\"description\":\"Automatically creates and sends newsletters with the latest blog posts.\",\"slug\":\"newsletter-feed\",\"type\":\"legacy\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/feed-by-mail-extension\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_playlist.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=51\",\"wp_slug\":\"newsletter-feed\\/feed.php\"},{\"id\":\"52\",\"children_fileid\":\"\",\"version\":\"4.1.0\",\"title\":\"Mailjet\",\"description\":\"Integrates the Mailjet delivery system and bounce detection.\",\"slug\":\"newsletter-mailjet\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/mailjet-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=52\",\"wp_slug\":\"newsletter-mailjet\\/mailjet.php\"},{\"id\":\"49\",\"children_fileid\":\"\",\"version\":\"4.0.0\",\"title\":\"Mandrill\",\"description\":\"Integrates the Mandrill delivery system and bounce detection.\",\"slug\":\"newsletter-mandrill\",\"type\":\"legacy\",\"url\":\"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mandrill-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=49\",\"wp_slug\":\"newsletter-mandrill\\/mandrill.php\"},{\"id\":\"60\",\"children_fileid\":\"\",\"version\":\"1.3.7\",\"title\":\"Amazon SES\",\"description\":\"Integrates Newsletter with Amazon SES service for sending emails and processing bounces.\",\"slug\":\"newsletter-amazon\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/amazon-ses-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=60\",\"wp_slug\":\"newsletter-amazon\\/amazon.php\"},{\"id\":\"48\",\"children_fileid\":\"\",\"version\":\"4.2.5\",\"title\":\"SendGrid\",\"description\":\"Integrates the SendGrid delivery system and bounce detection.\",\"slug\":\"newsletter-sendgrid\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sendgrid-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=48\",\"wp_slug\":\"newsletter-sendgrid\\/sendgrid.php\"},{\"id\":\"65\",\"children_fileid\":\"\",\"version\":\"4.1.5\",\"title\":\"Mailgun\",\"description\":\"Integrates the Mailgun delivery system and bounce detection.\",\"slug\":\"newsletter-mailgun\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/mailgun-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=65\",\"wp_slug\":\"newsletter-mailgun\\/mailgun.php\"},{\"id\":\"69\",\"children_fileid\":\"\",\"version\":\"1.1.8\",\"title\":\"SparkPost\",\"description\":\"Integrates Newsletter with the SparkPost mail delivery service and bounce detection.\",\"slug\":\"newsletter-sparkpost\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/sparkpost-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=69\",\"wp_slug\":\"newsletter-sparkpost\\/sparkpost.php\"},{\"id\":\"66\",\"children_fileid\":\"\",\"version\":\"1.1.2\",\"title\":\"ElasticEmail\",\"description\":\"ElasticEmail integration\",\"slug\":\"newsletter-elasticemail\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/elasticemail-extension\\/\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"2\",\"free\":false,\"downloadable\":false,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=66\",\"wp_slug\":\"newsletter-elasticemail\\/elasticemail.php\"},{\"id\":\"56\",\"children_fileid\":\"\",\"version\":\"2.2.0\",\"title\":\"Grabber\",\"description\":\"Experimental! General subscription grabber from other forms. Requires technical skills.\",\"slug\":\"newsletter-grabber\",\"type\":\"legacy\",\"url\":\"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/grabber-module\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/placeholder.png\",\"status\":\"4\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=56\",\"wp_slug\":\"newsletter-grabber\\/grabber.php\"},{\"id\":\"96\",\"children_fileid\":\"\",\"version\":\"1.0.3\",\"title\":\"Office 365 Header Removal\",\"description\":\"This addon removes hidden headers from outgoing email to avoid Office365 SMTP block (or attempt to...). Install ONLY if you\'re using Office365 SMTP with an SMTP plugin!\",\"slug\":\"newsletter-office365\",\"type\":\"delivery\",\"url\":\"https:\\/\\/www.thenewsletterplugin.com\\/account\",\"image\":\"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\"status\":\"3\",\"free\":true,\"downloadable\":true,\"download_url\":\"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=96\",\"wp_slug\":\"newsletter-office365\\/office365.php\"}]','no'),(5011,'_site_transient_timeout_theme_roots','1652934435','no'),(5012,'_site_transient_theme_roots','a:6:{s:12:\"ealoor-child\";s:7:\"/themes\";s:6:\"ealoor\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(5013,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652932636;s:7:\"checked\";a:6:{s:12:\"ealoor-child\";s:5:\"2.9.0\";s:6:\"ealoor\";s:5:\"2.9.0\";s:14:\"twentynineteen\";s:3:\"2.1\";s:12:\"twentytwenty\";s:3:\"1.8\";s:15:\"twentytwentyone\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:4:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(5014,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652932637;s:8:\"response\";a:13:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:19:\"chaty/cht-icons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:19:\"w.org/plugins/chaty\";s:4:\"slug\";s:5:\"chaty\";s:6:\"plugin\";s:19:\"chaty/cht-icons.php\";s:11:\"new_version\";s:5:\"2.8.6\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/chaty/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/chaty.2.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/chaty/assets/icon-256x256.gif?rev=2289620\";s:2:\"1x\";s:58:\"https://ps.w.org/chaty/assets/icon-128x128.gif?rev=2289620\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/chaty/assets/banner-1544x500.png?rev=2713306\";s:2:\"1x\";s:60:\"https://ps.w.org/chaty/assets/banner-772x250.png?rev=2713306\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:7:\"5.5.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:21:\"newsletter/plugin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:6:\"plugin\";s:21:\"newsletter/plugin.php\";s:11:\"new_version\";s:5:\"7.4.5\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/newsletter/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/newsletter.7.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/newsletter/assets/icon-256x256.png?rev=1052028\";s:2:\"1x\";s:63:\"https://ps.w.org/newsletter/assets/icon-128x128.png?rev=1160467\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/newsletter/assets/banner-1544x500.png?rev=1052027\";s:2:\"1x\";s:65:\"https://ps.w.org/newsletter/assets/banner-772x250.png?rev=1052027\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:5:\"6.0.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/instagram-feed.6.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-256x256.png?rev=2700807\";s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2700807\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/instagram-feed/assets/banner-1544x500.png?rev=2679382\";s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2679382\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:37:\"wp-whatsapp-chat/wp-whatsapp-chat.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/wp-whatsapp-chat\";s:4:\"slug\";s:16:\"wp-whatsapp-chat\";s:6:\"plugin\";s:37:\"wp-whatsapp-chat/wp-whatsapp-chat.php\";s:11:\"new_version\";s:5:\"5.0.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-whatsapp-chat/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-whatsapp-chat.5.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-whatsapp-chat/assets/icon-256x256.jpg?rev=2476299\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-whatsapp-chat/assets/icon-128x128.jpg?rev=2476299\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/wp-whatsapp-chat/assets/banner-1544x500.jpg?rev=2476299\";s:2:\"1x\";s:71:\"https://ps.w.org/wp-whatsapp-chat/assets/banner-772x250.jpg?rev=2476299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.3.13\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.3.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2671465\";s:2:\"1x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-128x128.png?rev=2671465\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2671465\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2671465\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.2\";}s:24:\"wp-whatsapp/whatsapp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/wp-whatsapp\";s:4:\"slug\";s:11:\"wp-whatsapp\";s:6:\"plugin\";s:24:\"wp-whatsapp/whatsapp.php\";s:11:\"new_version\";s:5:\"3.1.8\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-whatsapp/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/wp-whatsapp.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-whatsapp/assets/icon-256x256.png?rev=2725670\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-whatsapp/assets/icon-256x256.png?rev=2725670\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-whatsapp/assets/banner-1544x500.png?rev=2383895\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-whatsapp/assets/banner-772x250.png?rev=2383896\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:36:\"yith-woocommerce-quick-view/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/yith-woocommerce-quick-view\";s:4:\"slug\";s:27:\"yith-woocommerce-quick-view\";s:6:\"plugin\";s:36:\"yith-woocommerce-quick-view/init.php\";s:11:\"new_version\";s:6:\"1.15.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/yith-woocommerce-quick-view/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/yith-woocommerce-quick-view.1.15.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.jpg?rev=1460911\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-1544x500.jpg?rev=1460911\";s:2:\"1x\";s:82:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-772x250.jpg?rev=1460911\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:5:\"3.9.0\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.3.9.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.jpg?rev=2215573\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.jpg?rev=2209192\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.jpg?rev=2209192\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/meks-simple-flickr-widget\";s:4:\"slug\";s:25:\"meks-simple-flickr-widget\";s:6:\"plugin\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/meks-simple-flickr-widget/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/meks-simple-flickr-widget.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-256x256.png?rev=1522335\";s:2:\"1x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-128x128.png?rev=1522335\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/meks-simple-flickr-widget/assets/banner-772x250.jpg?rev=1927390\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:3:\"0.7\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:71:\"https://ps.w.org/wordpress-importer/assets/icon-256x256.png?rev=1908375\";s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=1908375\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";}}s:7:\"checked\";a:23:{s:19:\"akismet/akismet.php\";s:5:\"4.2.2\";s:17:\"booked/booked.php\";s:5:\"2.3.5\";s:35:\"case-theme-core/case-theme-core.php\";s:5:\"1.1.0\";s:39:\"case-theme-import/case-theme-import.php\";s:5:\"1.0.2\";s:35:\"case-theme-user/case-theme-user.php\";s:5:\"1.0.0\";s:19:\"chaty/cht-icons.php\";s:5:\"2.8.3\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.5\";s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";s:5:\"2.5.5\";s:23:\"elementor/elementor.php\";s:5:\"3.5.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:65:\"massive-cryptocurrency-widgets/massive-cryptocurrency-widgets.php\";s:5:\"3.2.0\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.6\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:3:\"1.2\";s:21:\"newsletter/plugin.php\";s:5:\"7.3.8\";s:23:\"revslider/revslider.php\";s:6:\"6.5.14\";s:33:\"instagram-feed/instagram-feed.php\";s:5:\"6.0.2\";s:37:\"wp-whatsapp-chat/wp-whatsapp-chat.php\";s:5:\"5.0.1\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.3.10\";s:27:\"woocommerce/woocommerce.php\";s:5:\"6.2.0\";s:41:\"wordpress-importer/wordpress-importer.php\";s:3:\"0.7\";s:24:\"wp-whatsapp/whatsapp.php\";s:5:\"3.1.4\";s:36:\"yith-woocommerce-quick-view/init.php\";s:6:\"1.12.0\";s:34:\"yith-woocommerce-wishlist/init.php\";s:5:\"3.6.0\";}}','no'),(5015,'_transient_timeout_mc4wp_mailchimp_lists','1653019038','no'),(5016,'_transient_mc4wp_mailchimp_lists','a:0:{}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=13989 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,397,'_wp_attached_file','2019/11/testimonial-01.jpg'),(2,400,'_wp_attached_file','2019/11/testimonial-04.jpg'),(3,401,'_wp_attached_file','2019/11/testimonial-05.jpg'),(4,402,'_wp_attached_file','2019/11/testimonial-06.jpg'),(5,997,'_wp_attached_file','2019/11/client-01.png'),(6,998,'_wp_attached_file','2019/11/client-02.png'),(7,999,'_wp_attached_file','2019/11/client-03.png'),(8,1000,'_wp_attached_file','2019/11/client-04.png'),(9,1522,'_wp_attached_file','2019/10/app-store.png'),(10,1524,'_wp_attached_file','2019/10/google-play.png'),(11,1530,'_wp_attached_file','2019/11/theme-01.jpg'),(12,1531,'_wp_attached_file','2019/11/theme-02.jpg'),(13,1532,'_wp_attached_file','2019/11/theme-03.jpg'),(14,1533,'_wp_attached_file','2019/11/theme-04.jpg'),(15,1534,'_wp_attached_file','2019/11/theme-05.jpg'),(16,1535,'_wp_attached_file','2019/11/theme-06.jpg'),(17,1536,'_wp_attached_file','2019/11/theme-07.jpg'),(18,1537,'_wp_attached_file','2019/11/theme-08.jpg'),(19,1538,'_wp_attached_file','2019/11/theme-09.jpg'),(20,1539,'_wp_attached_file','2019/11/theme-10.jpg'),(21,1540,'_wp_attached_file','2019/11/theme-11.jpg'),(22,1541,'_wp_attached_file','2019/11/theme-12.jpg'),(23,1542,'_wp_attached_file','2019/11/theme-13.jpg'),(24,1543,'_wp_attached_file','2019/11/theme-14.jpg'),(25,1552,'_wp_attached_file','2019/12/gallery-01.jpg'),(26,1553,'_wp_attached_file','2019/12/gallery-02.jpg'),(27,1554,'_wp_attached_file','2019/12/gallery-03.jpg'),(28,1555,'_wp_attached_file','2019/12/gallery-04.jpg'),(29,1556,'_wp_attached_file','2019/12/gallery-05.jpg'),(30,1557,'_wp_attached_file','2019/12/gallery-06.jpg'),(31,1568,'_wp_attached_file','2019/12/contact-about1.png'),(32,1656,'_wp_attached_file','2019/12/testimonial-07.jpg'),(33,1657,'_wp_attached_file','2019/12/testimonial-08.jpg'),(34,1658,'_wp_attached_file','2019/12/testimonial-09.jpg'),(35,1678,'_wp_attached_file','2019/12/client-05.png'),(36,1690,'_wp_attached_file','2019/12/team-01.jpg'),(37,1691,'_wp_attached_file','2019/12/team-02.jpg'),(38,1692,'_wp_attached_file','2019/12/team-03.jpg'),(39,1693,'_wp_attached_file','2019/12/team-04.jpg'),(40,1706,'_wp_attached_file','2019/12/team-single.jpg'),(41,1860,'_wp_attached_file','2019/12/theme-15.jpg'),(42,1877,'_wp_attached_file','2019/12/about1.png'),(43,1892,'_wp_attached_file','2019/12/signature.png'),(44,1896,'_wp_attached_file','2019/12/about-gap.png'),(45,1925,'_wp_attached_file','2019/12/BlackBlazer.jpg'),(46,1926,'_wp_attached_file','2019/12/BlackDress.jpg'),(47,1927,'_wp_attached_file','2019/12/BlackShoes.jpg'),(48,1928,'_wp_attached_file','2019/12/BlackSuit.jpg'),(49,1929,'_wp_attached_file','2019/12/CamiSkaterFront.jpg'),(50,1930,'_wp_attached_file','2019/12/ChelseaBoots.jpg'),(51,1931,'_wp_attached_file','2019/12/FlatShoes.jpg'),(52,1933,'_wp_attached_file','2019/12/LightBlueShirt.jpg'),(53,1934,'_wp_attached_file','2019/12/MonochromeCamiMidi.jpg'),(54,1935,'_wp_attached_file','2019/12/PureSilkBlackTie.jpg'),(55,1938,'_wp_attached_file','2019/12/SlimFitBrightBlue.jpg'),(56,1939,'_wp_attached_file','2019/12/WhiteTailoredBlazer.jpg'),(57,1985,'_wp_attached_file','2019/12/icon-google.png'),(58,1988,'_wp_attached_file','2019/12/icon-career.png'),(59,1989,'_wp_attached_file','2019/12/icon-codecanyon.png'),(60,1990,'_wp_attached_file','2019/12/icon-envato.png'),(61,1991,'_wp_attached_file','2019/12/icon-themeforest.png'),(62,2056,'_wp_attached_file','2019/12/bg-section-01.png'),(63,2070,'_wp_attached_file','2019/12/bg-section-02.png'),(64,2091,'_wp_attached_file','2019/12/bg-section-03.png'),(65,2114,'_wp_attached_file','2019/12/home-team-01.jpg'),(66,2115,'_wp_attached_file','2019/12/home-team-02.jpg'),(67,2116,'_wp_attached_file','2019/12/home-team-03.jpg'),(68,2117,'_wp_attached_file','2019/12/home-team-04.jpg'),(69,2125,'_wp_attached_file','2019/12/bg-section-04.png'),(70,2170,'_wp_attached_file','2019/12/home-author-01.jpg'),(71,2170,'_wp_attachment_wp_user_avatar','1'),(72,2171,'_wp_attached_file','2019/12/home-author-02.jpg'),(73,2179,'_wp_attached_file','2019/12/award-year.png'),(74,2180,'_wp_attached_file','2019/12/award.png'),(75,2306,'_wp_attached_file','2019/12/banner-01.png'),(76,2319,'_wp_attached_file','2019/12/signature-02.png'),(77,2391,'_wp_attached_file','2019/12/bg-section-05.png'),(78,2528,'_wp_attached_file','2019/12/bg-section-07.png'),(79,2602,'_wp_attached_file','2019/12/bg-section-07-1.png'),(80,2606,'_wp_attached_file','2019/12/h3-team-02.png'),(81,2671,'_wp_attached_file','2019/12/h3-map.png'),(82,2725,'_wp_attached_file','2019/12/h4-about1.png'),(83,2845,'_wp_attached_file','2019/12/h4-map.png'),(84,3282,'_wp_attached_file','2020/01/h6-bg-section-01.png'),(85,3383,'_wp_attached_file','2020/02/h6-team1.jpg'),(86,3399,'_wp_attached_file','2020/02/h6-team2.jpg'),(87,3400,'_wp_attached_file','2020/02/h6-team3.jpg'),(88,3401,'_wp_attached_file','2020/02/h6-team4.jpg'),(89,3411,'_wp_attached_file','2020/02/h6-bg-section-02.png'),(90,3663,'_wp_attached_file','2020/02/about4-icon1.png'),(91,3664,'_wp_attached_file','2020/02/about4-icon2.png'),(92,3665,'_wp_attached_file','2020/02/about4-icon3.png'),(93,3669,'_wp_attached_file','2020/02/about4-bg-section1.png'),(94,3679,'_wp_attached_file','2020/02/h4-about1.png'),(95,3681,'_wp_attached_file','2020/02/about4-shape1.png'),(96,3852,'_wp_attached_file','2020/02/contact-v4.png'),(97,4705,'_wp_attached_file','2019/11/update-blog3.jpg'),(98,4715,'_wp_attached_file','2020/03/update-service-01.jpg'),(99,4716,'_wp_attached_file','2020/03/update-service-02.jpg'),(100,4804,'_wp_attached_file','2019/12/corporate-portfolio4.jpg'),(101,4805,'_wp_attached_file','2019/12/corporate-portfolio5.jpg'),(102,4959,'_wp_attached_file','2020/06/client-img1.png'),(103,4960,'_wp_attached_file','2020/06/client-img2.png'),(104,4961,'_wp_attached_file','2020/06/client-img3.png'),(105,4962,'_wp_attached_file','2020/06/client-img4.png'),(106,4963,'_wp_attached_file','2020/06/client-img5.png'),(107,5534,'_wp_attached_file','2019/11/ud-blog1.jpg'),(108,5976,'_wp_attached_file','2020/12/digital-team-01.jpg'),(109,5977,'_wp_attached_file','2020/12/digital-team-02.jpg'),(110,5978,'_wp_attached_file','2020/12/digital-team-03.jpg'),(111,5979,'_wp_attached_file','2020/12/digital-team-04.jpg'),(112,6105,'_wp_attached_file','2019/11/digital-blog1.jpg'),(113,6106,'_wp_attached_file','2019/11/digital-blog2.jpg'),(114,6310,'_wp_attached_file','2021/02/bg-page-title.jpg'),(115,6420,'_wp_attached_file','2021/02/video-intro1.jpg'),(116,6622,'_wp_attached_file','2021/02/u-testimonial-01.jpg'),(117,6991,'_wp_attached_file','2021/02/theme23.jpg'),(118,6993,'_wp_attached_file','2021/02/about-section-01.jpg'),(119,7041,'_wp_attached_file','2021/03/favicon.png'),(120,7042,'_wp_attached_file','2021/03/logo-dark.png'),(121,7043,'_wp_attached_file','2021/03/logo-light.png'),(122,7046,'_wp_attached_file','2019/10/bg-footer1.jpg'),(123,7099,'_wp_attached_file','2021/03/bg-slider1.jpg'),(124,7134,'_wp_attached_file','2021/03/bg-slider2.jpg'),(125,7135,'_wp_attached_file','2021/03/bg-slider3.jpg'),(126,7257,'_wp_attached_file','2021/03/h-bg-section1-1.png'),(127,7267,'_wp_attached_file','2021/03/h-banner1.jpg'),(128,7304,'_wp_attached_file','2021/03/h-bg-section2.jpg'),(129,7416,'_wp_attached_file','2021/03/h-bg-section4.jpg'),(130,7439,'_wp_attached_file','2021/04/h-icon1.png'),(131,7440,'_wp_attached_file','2021/04/h-icon2.png'),(132,7441,'_wp_attached_file','2021/04/h-icon3.png'),(133,7454,'_wp_attached_file','2021/04/h-bg-section5.png'),(134,7500,'_wp_attached_file','2019/12/h-case1.jpg'),(135,7507,'_wp_attached_file','2021/04/h-bg-section7.jpg'),(136,7517,'_wp_attached_file','2019/12/case-logo1.png'),(137,7525,'_wp_attached_file','2021/04/h-case2.jpg'),(138,7538,'_wp_attached_file','2019/12/case-logo2.png'),(139,7616,'_wp_attached_file','2021/04/h-bg-section8.jpg'),(140,7683,'_wp_attached_file','2021/04/h-bg-section9.png'),(141,7739,'_wp_attached_file','2021/04/h-icon-arrow1.png'),(142,7746,'_wp_attached_file','2021/04/h-phone.png'),(143,7781,'_wp_attached_file','2019/11/u-blog-02.jpg'),(144,7782,'_wp_attached_file','2021/04/h-bg-newsletter.jpg'),(145,7786,'_wp_attached_file','2021/04/h-logo.png'),(146,20,'_wp_page_template','default'),(147,20,'_elementor_edit_mode','builder'),(148,20,'_elementor_template_type','wp-post'),(149,20,'_elementor_version','3.5.5'),(150,20,'post_views_count','0'),(151,20,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(152,20,'slide_template',''),(153,20,'rs_page_bg_color',''),(154,20,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(155,1214,'_elementor_edit_mode','builder'),(156,1214,'_elementor_template_type','section'),(157,1214,'_elementor_version','2.8.2'),(158,1214,'_wp_page_template','default'),(159,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(160,1214,'post_views_count','10'),(161,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(162,1217,'_elementor_edit_mode','builder'),(163,1217,'_elementor_template_type','section'),(164,1217,'_elementor_version','2.8.5'),(165,1217,'_wp_page_template','default'),(166,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$49\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(167,1217,'post_views_count','6'),(168,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(169,2331,'_elementor_edit_mode','builder'),(170,2331,'_elementor_template_type','page'),(171,2331,'_elementor_version','2.8.1'),(172,2331,'post_views_count','7'),(173,2331,'_wp_page_template','default'),(174,2331,'_elementor_data','[{\"id\":\"d1cb5f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b6c6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cc1412\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cc92\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Corporate\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_id\":\"d6cdbb5\"},{\"title\":\"Commercial\",\"percent\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_id\":\"49b0207\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"4661156\"}],\"title_color\":\"#FFFFFF\",\"percent_color\":\"#FFFFFF\",\"bar_color\":\"#1A2742\"},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false}]'),(175,2331,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_title\";a:3:{s:11:\"title_color\";i:1;s:13:\"percent_color\";i:1;s:9:\"bar_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(176,2439,'_thumbnail_id','1540'),(177,2439,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(178,2439,'slide_template',''),(179,2439,'_wp_page_template','default'),(180,2439,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(181,2439,'_elementor_edit_mode','builder'),(182,2439,'_elementor_template_type','wp-post'),(183,2439,'_elementor_version','2.8.1'),(184,2439,'post_views_count','0'),(185,2439,'_elementor_data','[{\"id\":\"340cbfdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cf659e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7372ea55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2868029f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2690ecfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1661230c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7fe8a59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53d82b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-11.jpg\",\"id\":1540},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"331e7402\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3deccc7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5318ff72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ad17de4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4da6f8\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42701245\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ff1f6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"316e9fea\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(186,2439,'rs_page_bg_color',''),(187,2439,'_wp_old_slug','on-behalf-of-world-bank-an-advocom-group'),(188,2439,'case_study_except','Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.'),(189,2439,'case_logo','a:5:{s:3:\"url\";s:88:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\";s:2:\"id\";s:4:\"7538\";s:6:\"height\";s:2:\"45\";s:5:\"width\";s:3:\"221\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2-150x45.png\";}'),(190,2439,'case_logo_link','#'),(191,2440,'_thumbnail_id','1536'),(192,2440,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(193,2440,'slide_template',''),(194,2440,'_wp_page_template','default'),(195,2440,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(196,2440,'_elementor_edit_mode','builder'),(197,2440,'_elementor_template_type','wp-post'),(198,2440,'_elementor_version','2.8.1'),(199,2440,'_elementor_data','[{\"id\":\"748ab28d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc47420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aaa25c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"660bb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a0a7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c74dc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bef493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78442ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"52b0f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db03d66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"731d0d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7270f1e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e9f61\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77721e8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71153a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"658f843d\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(200,2440,'rs_page_bg_color',''),(201,2440,'_wp_old_slug','developing-a-program-to-be-alleviate-poverty'),(202,2440,'case_study_except','Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.'),(203,2440,'case_logo','a:5:{s:3:\"url\";s:88:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\";s:2:\"id\";s:4:\"7517\";s:6:\"height\";s:2:\"45\";s:5:\"width\";s:3:\"198\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1-150x45.png\";}'),(204,2440,'case_logo_link','#'),(205,2441,'_thumbnail_id','1537'),(206,2441,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(207,2441,'slide_template',''),(208,2441,'_wp_page_template','default'),(209,2441,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(210,2441,'_elementor_edit_mode','builder'),(211,2441,'_elementor_template_type','wp-post'),(212,2441,'_elementor_version','2.8.1'),(213,2441,'_elementor_data','[{\"id\":\"4b622493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"234c95f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6d3f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"34a4b4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f4d334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208b03a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3559fe71\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4758f776\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc799b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37f5a5ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"386c6f32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5b84a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5386a630\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30fe9fbc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1e70909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d3deaf6\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(214,2441,'rs_page_bg_color',''),(215,2441,'case_study_except','Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.'),(216,2441,'case_logo','a:5:{s:3:\"url\";s:88:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\";s:2:\"id\";s:4:\"7538\";s:6:\"height\";s:2:\"45\";s:5:\"width\";s:3:\"221\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2-150x45.png\";}'),(217,2441,'case_logo_link','#'),(218,2442,'_thumbnail_id','7500'),(219,2442,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(220,2442,'slide_template',''),(221,2442,'_wp_page_template','default'),(222,2442,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(223,2442,'_elementor_edit_mode','builder'),(224,2442,'_elementor_template_type','wp-post'),(225,2442,'_elementor_version','2.8.1'),(226,2442,'_elementor_data','[{\"id\":\"76b672b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584e90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273f5ae9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"5cb7221f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5a4cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7059f46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"54a846cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e5f03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"677fe665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62c7ab10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"23bc3b25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bc7c6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1946a97a\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40019989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"633b2d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52624d78\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(227,2442,'rs_page_bg_color',''),(228,2442,'_wp_old_slug','international-business-development-relationships'),(229,2442,'case_study_except','Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.'),(230,2442,'case_logo','a:5:{s:3:\"url\";s:88:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\";s:2:\"id\";s:4:\"7517\";s:6:\"height\";s:2:\"45\";s:5:\"width\";s:3:\"198\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1-150x45.png\";}'),(231,2442,'case_logo_link','#'),(232,3872,'_elementor_edit_mode','builder'),(233,3872,'_elementor_template_type','section'),(234,3872,'_elementor_version','2.8.5'),(235,3872,'post_views_count','2'),(236,3872,'_wp_page_template','default'),(237,3872,'_elementor_data','[{\"id\":\"7f5cbd63\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43484ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b6dc952\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$499\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"5ae0ebee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2a9c5d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"609a9e8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2b4161c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"12576590\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4a12a6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$699\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(238,3872,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(239,3876,'_elementor_edit_mode','builder'),(240,3876,'_elementor_template_type','section'),(241,3876,'_elementor_version','2.8.5'),(242,3876,'post_views_count','1'),(243,3876,'_wp_page_template','default'),(244,3876,'_elementor_data','[{\"id\":\"33a40038\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f276f89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"488fdba\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$99\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"8a7b665\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d68f4b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$199\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"f582dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"559076c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$299\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"4b28e043\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a416d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$399\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(245,3876,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(246,4540,'_elementor_edit_mode','builder'),(247,4540,'_elementor_template_type','kit'),(248,4540,'_elementor_version','2.9.8'),(249,4540,'_elementor_page_settings','a:7:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"global_image_lightbox\";s:3:\"yes\";s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:8:\"4667c7bc\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"72237fa2\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"58c66546\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"497f31bd\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:9:\"Body Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}}'),(250,4587,'_wp_page_template','default'),(251,4587,'slide_template',''),(252,4587,'rs_page_bg_color',''),(253,4587,'_elementor_edit_mode','builder'),(254,4587,'_elementor_template_type','wp-post'),(255,4587,'_elementor_version','3.1.4'),(256,4587,'post_views_count','0'),(257,4587,'_elementor_data','[{\"id\":\"4f149ec4\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\"},\"elements\":[{\"id\":\"4b1d1c2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[{\"id\":\"350c630c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cbcb732\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo17.jpg\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo18.jpg\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo2.jpg\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo16.jpg\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9956471\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo21.jpg\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo12.jpg\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo13.jpg\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo14.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"215faf9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"6a11a2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"407d18db\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo22.jpg\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3c17032\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo7.jpg\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo8.jpg\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo9.jpg\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo10.jpg\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo5.jpg\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo6.jpg\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c74ecc8\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo3.jpg\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo4.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"a29ec60\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"9f9bf91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"37742fb\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance 4\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo27.jpg\"},{\"text\":\"Digital Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"662c359\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo26.jpg\"},{\"text\":\"Digital Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5b40409\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo24.jpg\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-immigration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"db3de6b\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f2a220c\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo11.jpg\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3da646a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo15.jpg\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo19.jpg\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo20.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"78dbb901\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5b68931c\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"15ed8c26\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo17.jpg\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo18.jpg\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo2.jpg\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo16.jpg\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5fc2e9f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo21.jpg\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo12.jpg\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo13.jpg\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo14.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7cb3d0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"15c22479\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"267327f9\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo22.jpg\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"daf5599\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo7.jpg\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo8.jpg\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo9.jpg\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo10.jpg\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo5.jpg\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo6.jpg\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo3.jpg\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo4.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"e33eb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"7007edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da64b5\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance 4\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo27.jpg\"},{\"text\":\"Digital Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b779f65\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo26.jpg\"},{\"text\":\"Digital Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb46406\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo24.jpg\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-immigration\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"27c093c\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"35fd6c1\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo15.jpg\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d283af8\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo11.jpg\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo19.jpg\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo20.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(258,4587,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:27:\"title_typography_typography\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:18:\"title_space_bottom\";i:6;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:11:\"css_classes\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(259,4680,'_mc4wp_settings','a:9:{s:5:\"lists\";a:1:{i:0;s:10:\"9bc6c4cc2e\";}s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";}'),(260,4680,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),(261,4680,'text_invalid_email','Please provide a valid email address.'),(262,4680,'text_required_field_missing','Please fill in the required fields.'),(263,4680,'text_already_subscribed','Given email address is already subscribed, thank you!'),(264,4680,'text_error','Oops. Something went wrong. Please try again later.'),(265,4680,'text_unsubscribed','You were successfully unsubscribed.'),(266,4680,'text_not_subscribed','Given email address is not subscribed.'),(267,4680,'text_no_lists_selected','Please select at least one list.'),(268,4680,'text_updated','Thank you, your records have been updated!'),(269,4680,'_wp_old_date','2020-05-08'),(270,5137,'_wp_page_template','default'),(271,5137,'slide_template',''),(272,5137,'rs_page_bg_color',''),(273,5137,'_elementor_edit_mode','builder'),(274,5137,'_elementor_template_type','wp-post'),(275,5137,'_elementor_version','2.9.14'),(276,5137,'_elementor_data','[{\"id\":\"11f7370\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"27051da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"27f95fa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interactive Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"43420956\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Testimonials\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/testimonials-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Blog Slider\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/blog-slider\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-newspaper\",\"library\":\"flaticonv3\"},\"_id\":\"25caa4d\",\"label\":\"\"},{\"text\":\"Portfolio Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/elements-portfolio-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"d1a9a4f\"},{\"text\":\"Service Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/service-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"be7ce10\"},{\"text\":\"Clients\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/clients\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"be34909\",\"label\":\"\"},{\"text\":\"History\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/history\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-history\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"7c5833e\"},{\"text\":\"Video Button\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/video-button\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-play-circle\",\"library\":\"fa-solid\"},\"_id\":\"f422155\",\"label\":\"\"},{\"text\":\"Columns\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/columns\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-columns\",\"library\":\"fa-solid\"},\"_id\":\"29a7115\",\"label\":\"\"},{\"text\":\"Row background\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/row-background\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-open-in-browser\",\"library\":\"material\"},\"_id\":\"f15ef7b\",\"label\":\"\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"48fd0d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"22b25e08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1014293\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Team Variations\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/team-variations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Buttons\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/buttons\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-dice-d6\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"cf56e8c\"},{\"text\":\"Tabs & Tours\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/tabs-tours\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ellipsis-h\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"2c2b9ad\"},{\"text\":\"Accordions & Toggles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/accordions-toggles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-server\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"0e5b944\"},{\"text\":\"Google Maps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/google-maps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-google-maps\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"b20f99c\"},{\"text\":\"Contact Forms 7\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/contact-forms-7\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-account-box-phone\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ec42890\"},{\"text\":\"Dividers\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dividers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-cut\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"3f7d182\"},{\"text\":\"Pricing Tables\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/pricing-tables\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-table\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"06e7c95\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"2d73d8d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"2ce67e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infographics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"50694cfe\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Counters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/counters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-sort-numeric-up\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Progress Bars\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/progress-bars\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-chart-line\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"53244c0\"},{\"text\":\"Icon With Text\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-with-text\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-gift\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"388c124\"},{\"text\":\"Icon Grid\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-grid\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-crown\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"10e9966\"},{\"text\":\"Image Box Fancy\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/image-box-fancy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-collection-folder-image\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ac49e20\"},{\"text\":\"Cover Boxes\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/cover-boxes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ticket-alt\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"caed56f\"},{\"text\":\"Newsletters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/newsletters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"d119127\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5a87c3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"480355a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Typography\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"acd6f6b\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Custom Fonts\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/custom-fonts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"material zmdi zmdi-font\",\"library\":\"material\"},\"label\":\"\"},{\"text\":\"Highlights\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/highlights\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-coffee\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ca12570\"},{\"text\":\"Blockquote\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/blockquote\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-right-quotation-mark\",\"library\":\"flaticonv2\"},\"label\":\"\",\"_id\":\"d26e2ad\"},{\"text\":\"Dropcaps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dropcaps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-width\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ee9bbb6\"},{\"text\":\"Message Box\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/message-box\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-assignment-alert\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"707a1d7\"},{\"text\":\"Lists\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/lists\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-list\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"19f958e\"},{\"text\":\"Titles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/titles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-height\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"e355a5d\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(277,5137,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:18:\"title_space_bottom\";i:4;s:28:\"title_typography_font_weight\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(286,8017,'_elementor_edit_mode','builder'),(287,8017,'_elementor_template_type','section'),(288,8017,'_elementor_version','3.1.4'),(289,8017,'_wp_page_template','default'),(290,8017,'_elementor_data','[{\"id\":\"744af522\",\"elType\":\"section\",\"settings\":{\"structure\":\"60\"},\"elements\":[{\"id\":\"56919264\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9c73d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"40c6b62e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo17.jpg\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo18.jpg\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo2.jpg\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo16.jpg\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9956471\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo21.jpg\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo12.jpg\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo13.jpg\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo14.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7664d9d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5bf5c4f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1bbb3be5\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo22.jpg\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3c17032\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo7.jpg\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo8.jpg\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo9.jpg\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo10.jpg\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo5.jpg\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo6.jpg\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c74ecc8\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo3.jpg\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo4.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7a7fd440\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5e51d121\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"79ebc7e8\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance 4\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo27.jpg\"},{\"text\":\"Digital Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"662c359\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo26.jpg\"},{\"text\":\"Digital Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5b40409\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo24.jpg\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-immigration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"db3de6b\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f2a220c\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo11.jpg\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3da646a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo15.jpg\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo19.jpg\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo20.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5d0e9199\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"25ae43c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7858226e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"img_url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo1.jpg\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo17.jpg\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo18.jpg\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo2.jpg\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo16.jpg\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5fc2e9f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo21.jpg\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo12.jpg\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo13.jpg\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo14.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"2d8f5515\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"372cbfc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"21c5ffaf\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo22.jpg\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"daf5599\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo7.jpg\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo8.jpg\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo9.jpg\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo10.jpg\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo5.jpg\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo6.jpg\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo3.jpg\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo4.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"16d85ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"30\",\"bottom\":\"33\",\"left\":\"32\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"3a00b44c\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1cc0a705\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance 4\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo27.jpg\"},{\"text\":\"Digital Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b779f65\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo26.jpg\"},{\"text\":\"Digital Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-digital\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb46406\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo24.jpg\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-immigration\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"27c093c\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo23.jpg\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"35fd6c1\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo15.jpg\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d283af8\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo11.jpg\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo19.jpg\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\",\"media_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/themes\\/csuti\\/assets\\/images\\/home-demo\\/demo20.jpg\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(291,8017,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:27:\"title_typography_typography\";i:6;s:26:\"title_typography_font_size\";i:6;s:28:\"title_typography_font_weight\";i:6;s:18:\"title_space_bottom\";i:6;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:11:\"css_classes\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(292,8018,'_menu_item_type','custom'),(293,8018,'_menu_item_menu_item_parent','0'),(294,8018,'_menu_item_object_id','8018'),(295,8018,'_menu_item_object','custom'),(296,8018,'_menu_item_target',''),(297,8018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(298,8018,'_menu_item_xfn',''),(299,8018,'_menu_item_url','#'),(300,8018,'_menu_item_ct_icon',''),(301,8019,'_menu_item_type','custom'),(302,8019,'_menu_item_menu_item_parent','8018'),(303,8019,'_menu_item_object_id','8019'),(304,8019,'_menu_item_object','custom'),(305,8019,'_menu_item_target',''),(306,8019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(307,8019,'_menu_item_xfn',''),(308,8019,'_menu_item_url','#'),(309,8019,'_menu_item_ct_icon',''),(310,8020,'_menu_item_type','custom'),(311,8020,'_menu_item_menu_item_parent','8018'),(312,8020,'_menu_item_object_id','8020'),(313,8020,'_menu_item_object','custom'),(314,8020,'_menu_item_target',''),(315,8020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(316,8020,'_menu_item_xfn',''),(317,8020,'_menu_item_url','#'),(318,8020,'_menu_item_ct_icon',''),(319,8021,'_menu_item_type','custom'),(320,8021,'_menu_item_menu_item_parent','8018'),(321,8021,'_menu_item_object_id','8021'),(322,8021,'_menu_item_object','custom'),(323,8021,'_menu_item_target',''),(324,8021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(325,8021,'_menu_item_xfn',''),(326,8021,'_menu_item_url','#'),(327,8021,'_menu_item_ct_icon',''),(328,8022,'_menu_item_type','custom'),(329,8022,'_menu_item_menu_item_parent','0'),(330,8022,'_menu_item_object_id','8022'),(331,8022,'_menu_item_object','custom'),(332,8022,'_menu_item_target',''),(333,8022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(334,8022,'_menu_item_xfn',''),(335,8022,'_menu_item_url','#'),(336,8022,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(337,8022,'_menu_item_ct_icon',''),(338,8022,'_menu_item_ct_megaprofile','0'),(339,8022,'_menu_item_ct_onepage','no-one-page'),(340,8022,'_menu_item_ct_onepage_offset',''),(341,8022,'_wp_old_date','2020-01-30'),(342,8023,'_menu_item_type','custom'),(343,8023,'_menu_item_menu_item_parent','8022'),(344,8023,'_menu_item_object_id','8023'),(345,8023,'_menu_item_object','custom'),(346,8023,'_menu_item_target',''),(347,8023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(348,8023,'_menu_item_xfn',''),(349,8023,'_menu_item_url','https://demo.casethemes.net/consultio-finance4/404-page/'),(350,8023,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(351,8023,'_menu_item_ct_icon',''),(352,8023,'_wp_old_date','2020-01-30'),(353,8024,'_menu_item_type','custom'),(354,8024,'_menu_item_menu_item_parent','0'),(355,8024,'_menu_item_object_id','8024'),(356,8024,'_menu_item_object','custom'),(357,8024,'_menu_item_target',''),(358,8024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(359,8024,'_menu_item_xfn',''),(360,8024,'_menu_item_url','https://casethemes.ticksy.com/'),(361,8024,'_menu_item_ct_megaprofile','0'),(362,8024,'_menu_item_ct_icon',''),(363,8024,'_menu_item_ct_onepage','no-one-page'),(364,8024,'_menu_item_ct_onepage_offset',''),(365,8025,'_menu_item_type','custom'),(366,8025,'_menu_item_menu_item_parent','0'),(367,8025,'_menu_item_object_id','8025'),(368,8025,'_menu_item_object','custom'),(369,8025,'_menu_item_target',''),(370,8025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(371,8025,'_menu_item_xfn',''),(372,8025,'_menu_item_url','#'),(373,8025,'_menu_item_ct_megaprofile','0'),(374,8025,'_menu_item_ct_icon',''),(375,8025,'_menu_item_ct_onepage','no-one-page'),(376,8025,'_menu_item_ct_onepage_offset',''),(377,8026,'_menu_item_type','custom'),(378,8026,'_menu_item_menu_item_parent','0'),(379,8026,'_menu_item_object_id','8026'),(380,8026,'_menu_item_object','custom'),(381,8026,'_menu_item_target',''),(382,8026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(383,8026,'_menu_item_xfn',''),(384,8026,'_menu_item_url','https://casethemes.ticksy.com/'),(385,8026,'_menu_item_ct_megaprofile','0'),(386,8026,'_menu_item_ct_icon',''),(387,8026,'_menu_item_ct_onepage','no-one-page'),(388,8026,'_menu_item_ct_onepage_offset',''),(389,8027,'_menu_item_type','custom'),(390,8027,'_menu_item_menu_item_parent','0'),(391,8027,'_menu_item_object_id','8027'),(392,8027,'_menu_item_object','custom'),(393,8027,'_menu_item_target',''),(394,8027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(395,8027,'_menu_item_xfn',''),(396,8027,'_menu_item_url','#'),(397,8027,'_menu_item_ct_megaprofile','0'),(398,8027,'_menu_item_ct_icon',''),(399,8027,'_menu_item_ct_onepage','no-one-page'),(400,8027,'_menu_item_ct_onepage_offset',''),(401,8028,'_menu_item_type','custom'),(402,8028,'_menu_item_menu_item_parent','0'),(403,8028,'_menu_item_object_id','8028'),(404,8028,'_menu_item_object','custom'),(405,8028,'_menu_item_target',''),(406,8028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(407,8028,'_menu_item_xfn',''),(408,8028,'_menu_item_url','#'),(409,8028,'_menu_item_ct_megaprofile','0'),(410,8028,'_menu_item_ct_icon',''),(411,8028,'_menu_item_ct_onepage','no-one-page'),(412,8028,'_menu_item_ct_onepage_offset',''),(413,8029,'_menu_item_type','custom'),(414,8029,'_menu_item_menu_item_parent','0'),(415,8029,'_menu_item_object_id','8029'),(416,8029,'_menu_item_object','custom'),(417,8029,'_menu_item_target',''),(418,8029,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(419,8029,'_menu_item_xfn',''),(420,8029,'_menu_item_url','#'),(421,8029,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(422,8029,'_menu_item_ct_icon',''),(423,8029,'_menu_item_ct_megaprofile','4587'),(424,8029,'_menu_item_ct_onepage','no-one-page'),(425,8029,'_menu_item_ct_onepage_offset',''),(426,8029,'_wp_old_date','2020-02-09'),(427,8030,'_menu_item_type','custom'),(428,8030,'_menu_item_menu_item_parent','0'),(429,8030,'_menu_item_object_id','8030'),(430,8030,'_menu_item_object','custom'),(431,8030,'_menu_item_target',''),(432,8030,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(433,8030,'_menu_item_xfn',''),(434,8030,'_menu_item_url','#'),(435,8030,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(436,8030,'_menu_item_ct_icon',''),(437,8030,'_menu_item_ct_megaprofile','0'),(438,8030,'_menu_item_ct_onepage','no-one-page'),(439,8030,'_menu_item_ct_onepage_offset',''),(440,8030,'_wp_old_date','2021-03-29'),(441,8031,'_menu_item_type','custom'),(442,8031,'_menu_item_menu_item_parent','8022'),(443,8031,'_menu_item_object_id','8031'),(444,8031,'_menu_item_object','custom'),(445,8031,'_menu_item_target',''),(446,8031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(447,8031,'_menu_item_xfn',''),(448,8031,'_menu_item_url','#'),(449,8031,'_menu_item_ct_megaprofile','0'),(450,8031,'_menu_item_ct_icon',''),(451,8031,'_menu_item_ct_onepage','no-one-page'),(452,8031,'_menu_item_ct_onepage_offset',''),(453,8032,'_menu_item_type','custom'),(454,8032,'_menu_item_menu_item_parent','8030'),(455,8032,'_menu_item_object_id','8032'),(456,8032,'_menu_item_object','custom'),(457,8032,'_menu_item_target',''),(458,8032,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(459,8032,'_menu_item_xfn',''),(460,8032,'_menu_item_url','https://demo.casethemes.net/consultio-finance4/404-page/'),(461,8032,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(462,8032,'_menu_item_ct_icon',''),(463,8032,'_wp_old_date','2021-03-29'),(464,8033,'_menu_item_type','custom'),(465,8033,'_menu_item_menu_item_parent','0'),(466,8033,'_menu_item_object_id','8033'),(467,8033,'_menu_item_object','custom'),(468,8033,'_menu_item_target',''),(469,8033,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(470,8033,'_menu_item_xfn',''),(471,8033,'_menu_item_url','#'),(472,8033,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(473,8033,'_menu_item_ct_icon',''),(474,8033,'_menu_item_ct_megaprofile','4587'),(475,8033,'_menu_item_ct_onepage','no-one-page'),(476,8033,'_menu_item_ct_onepage_offset',''),(477,8033,'_wp_old_date','2021-03-29'),(478,9,'_elementor_edit_mode','builder'),(479,9,'_elementor_template_type','wp-page'),(480,9,'_elementor_version','3.5.5'),(481,9,'_wp_page_template','default'),(482,9,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients .\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(483,9,'custom_header','0'),(484,9,'custom_pagetitle','hide'),(485,9,'custom_title',''),(486,9,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(487,9,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(488,9,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(489,9,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(490,9,'show_sidebar_page',''),(491,9,'sidebar_page_pos','right'),(492,9,'custom_footer','0'),(493,9,'footer_layout_custom','20'),(494,9,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(495,9,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(496,9,'slide_template','default'),(497,9,'header_layout','23'),(498,9,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(499,9,'page_h_phone',''),(500,9,'page_h_time',''),(501,9,'loading_page','themeoption'),(502,9,'loading_type','style1'),(503,9,'page_back_totop','themeoption'),(504,9,'rs_page_bg_color','#ffffff'),(505,9,'p_page_title_color',''),(506,9,'ptitle_overlay','themeoption'),(507,9,'ptitle_breadcrumb_page','themeoption'),(508,9,'ptitle_breadcrumb_color',''),(509,9,'h_custom_menu',''),(510,9,'h_custom_menu_left',''),(511,9,'h_custom_menu_right',''),(512,9,'p_h_style1','themeoption'),(513,9,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(514,9,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(534,8034,'_menu_item_type','custom'),(535,8034,'_menu_item_menu_item_parent','0'),(536,8034,'_menu_item_object_id','8034'),(537,8034,'_menu_item_object','custom'),(538,8034,'_menu_item_target',''),(539,8034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(540,8034,'_menu_item_xfn',''),(541,8034,'_menu_item_url','#'),(542,8034,'_menu_item_ct_megaprofile','5137'),(543,8034,'_menu_item_ct_icon',''),(544,8034,'_menu_item_ct_onepage','no-one-page'),(545,8034,'_menu_item_ct_onepage_offset',''),(546,8034,'_wp_old_date','2021-03-29'),(547,8035,'_menu_item_type','custom'),(548,8035,'_menu_item_menu_item_parent','0'),(549,8035,'_menu_item_object_id','8035'),(550,8035,'_menu_item_object','custom'),(551,8035,'_menu_item_target',''),(552,8035,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(553,8035,'_menu_item_xfn',''),(554,8035,'_menu_item_url','#section-home'),(555,8035,'_menu_item_ct_megaprofile','4587'),(556,8035,'_menu_item_ct_icon',''),(557,8035,'_menu_item_ct_onepage','is-one-page'),(558,8035,'_menu_item_ct_onepage_offset',''),(559,8035,'_wp_old_date','2020-07-25'),(560,8036,'_menu_item_type','custom'),(561,8036,'_menu_item_menu_item_parent','0'),(562,8036,'_menu_item_object_id','8036'),(563,8036,'_menu_item_object','custom'),(564,8036,'_menu_item_target',''),(565,8036,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(566,8036,'_menu_item_xfn',''),(567,8036,'_menu_item_url','#section-about'),(568,8036,'_menu_item_ct_megaprofile','0'),(569,8036,'_menu_item_ct_icon',''),(570,8036,'_menu_item_ct_onepage','is-one-page'),(571,8036,'_menu_item_ct_onepage_offset','80'),(572,8036,'_wp_old_date','2020-07-25'),(573,8037,'_menu_item_type','custom'),(574,8037,'_menu_item_menu_item_parent','0'),(575,8037,'_menu_item_object_id','8037'),(576,8037,'_menu_item_object','custom'),(577,8037,'_menu_item_target',''),(578,8037,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(579,8037,'_menu_item_xfn',''),(580,8037,'_menu_item_url','#section-services'),(581,8037,'_menu_item_ct_megaprofile','0'),(582,8037,'_menu_item_ct_icon',''),(583,8037,'_menu_item_ct_onepage','is-one-page'),(584,8037,'_menu_item_ct_onepage_offset','140'),(585,8037,'_wp_old_date','2020-07-25'),(586,8038,'_menu_item_type','custom'),(587,8038,'_menu_item_menu_item_parent','0'),(588,8038,'_menu_item_object_id','8038'),(589,8038,'_menu_item_object','custom'),(590,8038,'_menu_item_target',''),(591,8038,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(592,8038,'_menu_item_xfn',''),(593,8038,'_menu_item_url','#section-projects'),(594,8038,'_menu_item_ct_megaprofile','0'),(595,8038,'_menu_item_ct_icon',''),(596,8038,'_menu_item_ct_onepage','is-one-page'),(597,8038,'_menu_item_ct_onepage_offset','80'),(598,8038,'_wp_old_date','2020-07-25'),(599,8039,'_menu_item_type','custom'),(600,8039,'_menu_item_menu_item_parent','0'),(601,8039,'_menu_item_object_id','8039'),(602,8039,'_menu_item_object','custom'),(603,8039,'_menu_item_target',''),(604,8039,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(605,8039,'_menu_item_xfn',''),(606,8039,'_menu_item_url','#section-blog'),(607,8039,'_menu_item_ct_megaprofile','0'),(608,8039,'_menu_item_ct_icon',''),(609,8039,'_menu_item_ct_onepage','is-one-page'),(610,8039,'_menu_item_ct_onepage_offset','160'),(611,8039,'_wp_old_date','2020-07-25'),(612,8040,'_menu_item_type','custom'),(613,8040,'_menu_item_menu_item_parent','0'),(614,8040,'_menu_item_object_id','8040'),(615,8040,'_menu_item_object','custom'),(616,8040,'_menu_item_target',''),(617,8040,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(618,8040,'_menu_item_xfn',''),(619,8040,'_menu_item_url','#section-contact'),(620,8040,'_menu_item_ct_megaprofile','0'),(621,8040,'_menu_item_ct_icon',''),(622,8040,'_menu_item_ct_onepage','is-one-page'),(623,8040,'_menu_item_ct_onepage_offset','80'),(624,8040,'_wp_old_date','2020-07-25'),(625,8041,'_menu_item_type','custom'),(626,8041,'_menu_item_menu_item_parent','8030'),(627,8041,'_menu_item_object_id','8041'),(628,8041,'_menu_item_object','custom'),(629,8041,'_menu_item_target',''),(630,8041,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(631,8041,'_menu_item_xfn',''),(632,8041,'_menu_item_url','#'),(633,8041,'_menu_item_ct_megaprofile','0'),(634,8041,'_menu_item_ct_icon',''),(635,8041,'_menu_item_ct_onepage','no-one-page'),(636,8041,'_menu_item_ct_onepage_offset',''),(637,8041,'_wp_old_date','2021-03-29'),(638,8042,'_menu_item_type','custom'),(639,8042,'_menu_item_menu_item_parent','0'),(640,8042,'_menu_item_object_id','8042'),(641,8042,'_menu_item_object','custom'),(642,8042,'_menu_item_target',''),(643,8042,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(644,8042,'_menu_item_xfn',''),(645,8042,'_menu_item_url','#section-pricing'),(646,8042,'_menu_item_ct_megaprofile','0'),(647,8042,'_menu_item_ct_icon',''),(648,8042,'_menu_item_ct_onepage','is-one-page'),(649,8042,'_menu_item_ct_onepage_offset','80'),(650,26,'_wp_page_template','default'),(651,26,'custom_header',''),(652,26,'header_layout','1'),(653,26,'custom_pagetitle','hide'),(654,26,'custom_title','About us'),(655,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(656,26,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(657,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(658,26,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(659,26,'show_sidebar_page',''),(660,26,'sidebar_page_pos','right'),(661,26,'custom_footer',''),(662,26,'footer_layout_custom',''),(664,26,'_elementor_edit_mode','builder'),(665,26,'_elementor_template_type','wp-page'),(666,26,'_elementor_version','3.5.5'),(667,26,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(668,26,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(669,26,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(670,26,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(671,26,'page_h_phone',''),(672,26,'page_h_time',''),(673,26,'loading_page','themeoption'),(674,26,'loading_type','style1'),(675,26,'page_back_totop','themeoption'),(677,26,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(678,26,'p_h_style1','themeoption'),(679,26,'h_custom_menu',''),(680,26,'h_custom_menu_left',''),(681,26,'h_custom_menu_right',''),(682,26,'p_page_title_color',''),(683,26,'ptitle_overlay','themeoption'),(684,26,'ptitle_breadcrumb_page','themeoption'),(685,26,'ptitle_breadcrumb_color',''),(686,26,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(687,28,'_wp_page_template','default'),(688,28,'custom_header',''),(689,28,'header_layout','1'),(690,28,'custom_pagetitle','show'),(691,28,'custom_title',''),(692,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(693,28,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(694,28,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#eef2fb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(238,242,251,1)\";}'),(695,28,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(696,28,'show_sidebar_page',''),(697,28,'sidebar_page_pos','right'),(698,28,'custom_footer',''),(699,28,'footer_layout_custom',''),(700,28,'slide_template','default'),(701,28,'_elementor_edit_mode','builder'),(702,28,'_elementor_template_type','wp-page'),(703,28,'_elementor_version','2.8.2'),(704,28,'_elementor_data','[{\"id\":\"53e9f59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d122fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.417000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"a1dc510\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"603daca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d3ffe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dc6244\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d5aaa1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88f2e7b\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"35409ba\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Jewel D Smith\",\"position\":\"Executive Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"80b51bd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-02.jpg\",\"id\":1691},\"title\":\"Alan Smith\",\"position\":\"Managing Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"46930fd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-03.jpg\",\"id\":1692},\"title\":\"Brad Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"82fc396\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"71c9864\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-04.jpg\",\"id\":1693},\"title\":\"Joyce\\u00a0Thompson\",\"position\":\"Asistant Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"62b6c11\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"10be1e6\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Joyce Thompson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"ffd748f\",\"btn_text\":\"Details\"}],\"col_md\":\"2\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"186df5b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f140b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"661063e1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(705,28,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(706,28,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(707,28,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(708,30,'_wp_page_template','default'),(709,30,'custom_header',''),(710,30,'header_layout','1'),(711,30,'custom_pagetitle','show'),(712,30,'custom_title',''),(713,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1535\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-150x150.jpg\";}}'),(714,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(715,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(716,30,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(717,30,'show_sidebar_page',''),(718,30,'sidebar_page_pos','right'),(719,30,'custom_footer',''),(720,30,'footer_layout_custom',''),(721,30,'slide_template','default'),(722,30,'_elementor_edit_mode','builder'),(723,30,'_elementor_template_type','wp-page'),(724,30,'_elementor_data','[{\"id\":\"595e705\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbf6e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e58aff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"0bac2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64b4dfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d88f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"74\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"325916e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60e5f30\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"0f620d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"346929e\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d6e093c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f503527\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fee7573\",\"elType\":\"widget\",\"settings\":{\"title\":\"Still have you any problem  for solutions?\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"d0a7700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d6687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership\\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6783ba1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dd5ac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"1bf7025\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1655275\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"daf846a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"ee30c25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.417000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6017a24\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"1615\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4290b7d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fc683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"65d291e6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a2d1f31\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(725,30,'_elementor_version','2.7.5'),(726,30,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(727,30,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(728,30,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:2;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:12:\"ct_accordion\";i:2;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(729,32,'_wp_page_template','default'),(730,32,'custom_header',''),(731,32,'header_layout','1'),(732,32,'custom_pagetitle','show'),(733,32,'custom_title',''),(734,32,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(735,32,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(736,32,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(737,32,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(738,32,'show_sidebar_page',''),(739,32,'sidebar_page_pos','right'),(740,32,'custom_footer',''),(741,32,'footer_layout_custom',''),(742,32,'slide_template','default'),(743,32,'_elementor_edit_mode','builder'),(744,32,'_elementor_template_type','wp-page'),(745,32,'_elementor_version','2.7.5'),(746,32,'_elementor_data','[{\"id\":\"47aaa16\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2be9dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2740d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e3c1a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e8890\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\\nconnection, we create platforms.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8389a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"0632e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ba3c267\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1214\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1217\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5afa04\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2854a98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1927c5f8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(747,32,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(748,32,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(749,32,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(750,123,'_wp_page_template','default'),(751,123,'custom_header',''),(752,123,'header_layout','1'),(753,123,'custom_pagetitle','themeoption'),(754,123,'custom_title',''),(755,123,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(756,123,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(757,123,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(758,123,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(759,123,'show_sidebar_page',''),(760,123,'sidebar_page_pos','right'),(761,123,'custom_footer',''),(762,123,'footer_layout_custom',''),(763,123,'slide_template','default'),(764,123,'_elementor_edit_mode','builder'),(765,123,'_elementor_template_type','wp-page'),(766,123,'_elementor_version','2.8.1'),(767,123,'_elementor_data','[{\"id\":\"4f12f44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607e712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33eb12a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"20cca318\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dc34528\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"984afbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"baf5018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"be0576a\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"true\",\"limit\":6,\"col_md\":\"2\",\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33c065af\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8afbc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2eb38a40\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(768,123,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(769,123,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(770,123,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(771,125,'_wp_page_template','default'),(772,125,'custom_header',''),(773,125,'header_layout','1'),(774,125,'custom_pagetitle','show'),(775,125,'custom_title','Blog Grid'),(776,125,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(777,125,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(778,125,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(779,125,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(780,125,'show_sidebar_page','1'),(781,125,'sidebar_page_pos','left'),(782,125,'custom_footer',''),(783,125,'footer_layout_custom',''),(784,125,'slide_template','default'),(785,125,'_elementor_edit_mode','builder'),(786,125,'_elementor_template_type','wp-page'),(787,125,'_elementor_version','2.8.2'),(788,125,'_elementor_data','[{\"id\":\"928f20f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"b1ac6d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c0262c\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(789,125,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(790,127,'_wp_page_template','default'),(791,127,'custom_header',''),(792,127,'header_layout','1'),(793,127,'custom_pagetitle','show'),(794,127,'custom_title','Blog Grid'),(795,127,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(796,127,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(797,127,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(798,127,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(799,127,'show_sidebar_page','1'),(800,127,'sidebar_page_pos','right'),(801,127,'custom_footer',''),(802,127,'footer_layout_custom',''),(803,127,'slide_template','default'),(804,127,'_elementor_edit_mode','builder'),(805,127,'_elementor_template_type','wp-page'),(806,127,'_elementor_version','2.8.2'),(807,127,'_elementor_data','[{\"id\":\"9549dba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"fba6296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"94a4695\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(808,127,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(809,129,'_wp_page_template','default'),(810,129,'custom_header',''),(811,129,'header_layout','1'),(812,129,'custom_pagetitle','show'),(813,129,'custom_title','Blog Grid'),(814,129,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(815,129,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(816,129,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(817,129,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(818,129,'show_sidebar_page',''),(819,129,'sidebar_page_pos','right'),(820,129,'custom_footer',''),(821,129,'footer_layout_custom',''),(822,129,'slide_template','default'),(823,129,'_elementor_edit_mode','builder'),(824,129,'_elementor_template_type','wp-page'),(825,129,'_elementor_data','[{\"id\":\"fb04492\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3c5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1a14f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Our Service area\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f25fa3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d957c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df308c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"extended\"},\"elements\":[{\"id\":\"95c454c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b97f62b\",\"elType\":\"widget\",\"settings\":{\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"filter_alignment\":\"right\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef66b82\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4112df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30b600db\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(826,129,'_elementor_version','2.9.3'),(827,129,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:10:\"ct_animate\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"filter_alignment\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(828,132,'_wp_page_template','default'),(829,132,'_elementor_controls_usage','a:0:{}'),(830,132,'custom_header',''),(831,132,'header_layout','1'),(832,132,'custom_pagetitle','themeoption'),(833,132,'custom_title',''),(834,132,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(835,132,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(836,132,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(837,132,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(838,132,'show_sidebar_page',''),(839,132,'sidebar_page_pos','right'),(840,132,'custom_footer',''),(841,132,'footer_layout_custom',''),(842,132,'slide_template','default'),(843,134,'_wp_page_template','template-parts/blog-classic.php'),(844,134,'_elementor_controls_usage','a:0:{}'),(845,134,'custom_header',''),(846,134,'header_layout','1'),(847,134,'custom_pagetitle','show'),(848,134,'custom_title','Blog Standard'),(849,134,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(850,134,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(851,134,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(852,134,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(853,134,'show_sidebar_page','1'),(854,134,'sidebar_page_pos','left'),(855,134,'custom_footer',''),(856,134,'footer_layout_custom',''),(857,134,'slide_template','default'),(858,136,'_wp_page_template','template-parts/blog-classic.php'),(859,136,'_elementor_controls_usage','a:0:{}'),(860,136,'custom_header',''),(861,136,'header_layout','1'),(862,136,'custom_pagetitle','show'),(863,136,'custom_title','Blog Standard'),(864,136,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(865,136,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(866,136,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(867,136,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(868,136,'show_sidebar_page',''),(869,136,'sidebar_page_pos','right'),(870,136,'custom_footer',''),(871,136,'footer_layout_custom',''),(872,136,'slide_template','default'),(873,362,'_wp_page_template','default'),(874,362,'custom_header',''),(875,362,'header_layout','1'),(876,362,'custom_pagetitle','themeoption'),(877,362,'custom_title',''),(878,362,'ptitle_bg','a:2:{s:16:\"background-image\";s:88:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/gallery-02.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1553\";s:6:\"height\";s:3:\"600\";s:5:\"width\";s:3:\"600\";s:9:\"thumbnail\";s:96:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/gallery-02-150x150.jpg\";}}'),(879,362,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(880,362,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(881,362,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(882,362,'show_sidebar_page',''),(883,362,'sidebar_page_pos','right'),(884,362,'custom_footer',''),(885,362,'footer_layout_custom',''),(886,362,'slide_template','default'),(887,362,'_elementor_edit_mode','builder'),(888,362,'_elementor_template_type','wp-page'),(889,362,'_elementor_version','2.7.5'),(890,362,'_elementor_data','[{\"id\":\"2645f20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33d032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0f31e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"FAQ\",\"style\":\"st-line-top1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"89f4b61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80ad649\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2d4a6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"de3f4f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"605e76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"email\":\"info@consulio.com \",\"phone\":\"+123 (4567) 890\",\"address\":\"380 St Kilda Road, Melbourne VIC 3004, Australia\",\"icons\":[{\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7cf43ed\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"def76d5\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"35b4313\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b97b712\"}],\"btn_text\":\"Appionment\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_team_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0ab90\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2a9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5bc25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b73102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3d2e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b4a0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17e0426\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-skill\",\"library\":\"flaticon\"},\"title_text\":\"Expert team member\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"eaf1b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"faff530\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-setting-spanner\",\"library\":\"flaticon\"},\"title_text\":\"24\\/7 Customer support\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1927758b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aafda89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29260a70\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(891,362,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(892,362,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(893,362,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;}}}}s:15:\"ct_team_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_Content\";a:9:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:8:\"position\";i:1;s:5:\"email\";i:1;s:5:\"phone\";i:1;s:7:\"address\";i:1;s:5:\"icons\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(894,367,'_wp_page_template','default'),(895,367,'custom_header',''),(896,367,'header_layout','1'),(897,367,'custom_pagetitle','show'),(898,367,'custom_title',''),(899,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(900,367,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(901,367,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}'),(902,367,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(903,367,'show_sidebar_page',''),(904,367,'sidebar_page_pos','right'),(905,367,'custom_footer',''),(906,367,'footer_layout_custom',''),(907,367,'slide_template','default'),(908,367,'_elementor_edit_mode','builder'),(909,367,'_elementor_template_type','wp-page'),(910,367,'_elementor_version','2.8.2'),(911,367,'_elementor_data','[{\"id\":\"d23e4f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cb9323b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.75},\"elements\":[{\"id\":\"7f58838\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"daa1215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.25,\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cb6926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01c0a8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1695462\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b6c0336\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"802cda4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"cae1995\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"3804c9a\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"9cc7cf6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Carolyn Smith\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"45dd5f6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Pamela Johnson\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"5a0d1f7\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ed0847\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d04724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d8484a6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(912,367,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(913,367,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(914,367,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(915,367,'p_h_style1','themeoption'),(916,367,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(917,367,'page_h_phone',''),(918,367,'page_h_time',''),(919,367,'h_custom_menu',''),(920,367,'h_custom_menu_left',''),(921,367,'h_custom_menu_right',''),(922,367,'p_page_title_color',''),(923,367,'ptitle_overlay','themeoption'),(924,367,'ptitle_breadcrumb_page','themeoption'),(925,367,'ptitle_breadcrumb_color',''),(926,367,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(927,367,'loading_page','themeoption'),(928,367,'loading_type','style1'),(929,367,'page_back_totop','themeoption'),(930,367,'rs_page_bg_color','#ffffff'),(931,407,'_wp_page_template','default'),(932,407,'custom_header',''),(933,407,'header_layout','1'),(934,407,'custom_pagetitle','show'),(935,407,'custom_title','Services'),(936,407,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(937,407,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(938,407,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(939,407,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(940,407,'show_sidebar_page',''),(941,407,'sidebar_page_pos','right'),(942,407,'custom_footer',''),(943,407,'footer_layout_custom',''),(944,407,'slide_template','default'),(945,407,'_elementor_edit_mode','builder'),(946,407,'_elementor_template_type','wp-page'),(947,407,'_elementor_version','3.1.4'),(948,407,'_elementor_data','[{\"id\":\"f019bad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ce29c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"d3b6aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"877c444\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a619a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d640f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e2ce89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16d5b63\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_md\":\"2\",\"source\":[\"consulting|service-category\"],\"ct_animate\":\"wow fadeIn\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b5b5683\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4106b489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b8ee2df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(949,407,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(950,409,'_wp_page_template','default'),(951,409,'custom_header',''),(952,409,'header_layout','1'),(953,409,'custom_pagetitle','show'),(954,409,'custom_title','Services'),(955,409,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(956,409,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(957,409,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(958,409,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(959,409,'show_sidebar_page',''),(960,409,'sidebar_page_pos','right'),(961,409,'custom_footer',''),(962,409,'footer_layout_custom',''),(963,409,'slide_template','default'),(964,409,'_elementor_edit_mode','builder'),(965,409,'_elementor_template_type','wp-page'),(966,409,'_elementor_version','2.9.14'),(967,409,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"corporate|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(968,409,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(969,415,'_wp_page_template','default'),(970,415,'custom_header',''),(971,415,'header_layout','1'),(972,415,'custom_pagetitle','themeoption'),(973,415,'custom_title',''),(974,415,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(975,415,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(976,415,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(977,415,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(978,415,'show_sidebar_page',''),(979,415,'sidebar_page_pos','right'),(980,415,'custom_footer',''),(981,415,'footer_layout_custom',''),(982,415,'slide_template','default'),(983,415,'_elementor_edit_mode','builder'),(984,415,'_elementor_template_type','wp-page'),(985,415,'_elementor_data','[{\"id\":\"934d137\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b2993d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"d7e414a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"c5cb0c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255149c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"228c27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf73b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7856011\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dc1332\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7156578d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"782c88ec\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(986,415,'_elementor_version','2.8.2'),(987,415,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(988,417,'_wp_page_template','default'),(989,417,'custom_header',''),(990,417,'header_layout','1'),(991,417,'custom_pagetitle','themeoption'),(992,417,'custom_title',''),(993,417,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(994,417,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(995,417,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(996,417,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(997,417,'show_sidebar_page',''),(998,417,'sidebar_page_pos','right'),(999,417,'custom_footer',''),(1000,417,'footer_layout_custom',''),(1001,417,'slide_template','default'),(1002,417,'_elementor_edit_mode','builder'),(1003,417,'_elementor_template_type','wp-page'),(1004,417,'_elementor_version','2.8.2'),(1005,417,'_elementor_data','[{\"id\":\"480e3e3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29909522\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"3a5a486b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2047a9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c91bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"437e1689\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"17\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2cfad8b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52e98c5\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"layout\":\"2\",\"limit\":5,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ed166d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c7084ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"185e01e3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1006,417,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:10:\"ct_animate\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1007,748,'_elementor_controls_usage','a:0:{}'),(1008,749,'_elementor_controls_usage','a:0:{}'),(1009,750,'_elementor_controls_usage','a:0:{}'),(1010,751,'_elementor_controls_usage','a:0:{}'),(1011,783,'_wp_page_template','default'),(1012,783,'_elementor_controls_usage','a:0:{}'),(1013,783,'custom_header',''),(1014,783,'header_layout','1'),(1015,783,'custom_pagetitle','themeoption'),(1016,783,'custom_title',''),(1017,783,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1018,783,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1019,783,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1020,783,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1021,783,'show_sidebar_page',''),(1022,783,'sidebar_page_pos','right'),(1023,783,'custom_footer',''),(1024,783,'footer_layout_custom',''),(1025,783,'slide_template','default'),(1026,1972,'_wp_page_template','default'),(1027,1972,'custom_header',''),(1028,1972,'header_layout','1'),(1029,1972,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1030,1972,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1031,1972,'custom_pagetitle','show'),(1032,1972,'custom_title',''),(1033,1972,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1532\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-150x150.jpg\";}}'),(1034,1972,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1035,1972,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1036,1972,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1037,1972,'show_sidebar_page',''),(1038,1972,'sidebar_page_pos','right'),(1039,1972,'custom_footer',''),(1040,1972,'footer_layout_custom',''),(1041,1972,'slide_template','default'),(1042,1972,'_elementor_edit_mode','builder'),(1043,1972,'_elementor_template_type','wp-page'),(1044,1972,'_elementor_version','2.8.2'),(1045,1972,'_elementor_data','[{\"id\":\"68c872\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"61\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"553856d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b6cccf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From startups to Fortune 500s, WayUp offers the best internships and jobs.\",\"sub_title\":\"Career\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7bfd02a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec2a151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f8a622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"ea0c095\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7bf4992\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Digital Designer\",\"btn_text\":\"Apply now fds\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"e535d05\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-envato.png\",\"id\":1990},\"title\":\"Graphic Artist\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"4ad9249\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-themeforest.png\",\"id\":1991},\"title\":\"Sales Reporter\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"0bfca0b\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-codecanyon.png\",\"id\":1989},\"title\":\"Digital Marketer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"cddfe0a\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Web Designer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"24295dc\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/icon-career.png\",\"id\":1988},\"title\":\"Web Developer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"be4c6df\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_career_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"380c36d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"610f6d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379456c7\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1046,1972,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:14:\"ct_career_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(1047,2269,'_wp_page_template','default'),(1048,2269,'custom_header','0'),(1049,2269,'header_layout','2'),(1050,2269,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1051,2269,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1052,2269,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1053,2269,'custom_pagetitle','themeoption'),(1054,2269,'custom_title',''),(1055,2269,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1056,2269,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1057,2269,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1058,2269,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1059,2269,'show_sidebar_page',''),(1060,2269,'sidebar_page_pos','right'),(1061,2269,'custom_footer','0'),(1062,2269,'footer_layout_custom',''),(1063,2269,'slide_template','default'),(1064,2269,'_elementor_edit_mode','builder'),(1065,2269,'_elementor_template_type','wp-page'),(1066,2269,'_elementor_version','2.9.3'),(1067,2269,'_elementor_data','[{\"id\":\"3770f102\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"364d1073\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"544239aa\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Finance\",\"shortcode\":\"[rev_slider alias=\\\"finance\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c64da04\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#f5f3f3\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88a5daf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99},\"elements\":[{\"id\":\"3f8bba26\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"},{\"id\":\"53a5ea8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can also find our <a href=\\\"#\\\" class=\\\"link-underline\\\">Consultant Service<\\/a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a747091\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"261cbf0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"20e97492\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27f827a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71bd656e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31a20797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e1d086b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38da7403\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4df54e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"275dcd69\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins with connections between people.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"5a98ce9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"176899ec\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span sectors\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government, industry and global forums. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"3fe9281f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery model\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14a9e84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6abde327\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5db5ae11\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.85)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12dcc0f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b54a2aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"774cd4d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1a769387\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"67e213ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"617bae36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"332806ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"business|service-category\"],\"limit\":4,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"style\":\"style2\",\"layout\":\"3\",\"ct_animate\":\"wow lightSpeedIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea6b9bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"52\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cd0ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63723817\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble with the skills of task at hand. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a3f7619\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 25 years working for one of Australia\\u2019s most\\nrecognised and successful retailers purpose and inspired culture, where people work cohesively towards shared goals.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"022\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"234482b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"377da551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78e6a0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Active to work\",\"bar_color\":\"#d1651a\",\"description\":\"We do not believe in contracts\\ntherefore we do not have one. \\nWe are fully invested.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"3fa4fcd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21ce9356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Completed work\",\"percentage_value\":75,\"bar_color\":\"#d1651a\",\"description\":\"You will be fully satisfied, you\\nare under no obligation to continue with the services I provide.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"93ea274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a5f7f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about-02.png\",\"id\":2046},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69fd9eed\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-02.png\",\"id\":2070},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0e0e0e\"},\"elements\":[{\"id\":\"751d081\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"98959c2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ff261f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"7baa1333\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something for evaluation or memory.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"6e3e1895\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55403599\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively\\nimpacted our clients and that they are happy to share their\\nexperience.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4357c297\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-10.jpg\",\"id\":2074},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"eba0dc9\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Kathleen Smith \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"a09cd4e\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Pamela Johnson \",\"position\":\"Leadership Group\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"5ce29fd\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Macquarie Telecom \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"53bc7b0\",\"sub_title\":\"\"}],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pause_on_hover\":\"true\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":1000},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35df438d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-03.png\",\"id\":2091},\"background_position\":\"bottom left\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdb89ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51b259f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f636e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"548ca755\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"da12eec\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"d8c2527\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5e4a690\"},{\"ac_title\":\"How can I consult with the consultant team?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"c7e6a44\"}],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"6f9ea628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21843550\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#edeff1\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"50\",\"bottom\":\"65\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"65\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb92f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5e0cea99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get a free quote here\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"163de2e5\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cb2b1f1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18312165\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bd3e570\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53},\"elements\":[{\"id\":\"2603f09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"style\":\"st-line-left1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4befb6d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"151f7883\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9836a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7cd7ecc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c45687c\",\"elType\":\"widget\",\"settings\":{\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e77fd44\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"3bc0a9d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"9ee3f6e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"7a295e1\"}],\"slides_to_show\":\"4\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"3\",\"col_xl\":\"4\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67dedac5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fcd0ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"4968aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_color\":\"#ffffff\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6497515c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fa9faad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"6ee56c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c68a807\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3cff6e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"20d432ae\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"23c69e92\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"705e3eb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"842be3a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"2d7dfe44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56535aa7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5a26d938\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"ba3bb53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"311bee62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"656dca81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a0ee215\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"72\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"622420c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"191b6b73\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a00de5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.94)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4983fe1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30920f22\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b22bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"56563d4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"13f563fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3567dd9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"707d8c2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"361413c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"a75ff28\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5c3a0137\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3bb51865\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"571c1c93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"2524e5ff\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"2166\",\"style_l1\":\"style3\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27ad81a8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56c1556c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order1\"},\"elements\":[{\"id\":\"68fa16a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-01.jpg\",\"id\":2173},\"title\":\"Best Business Award \\u201819\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"613fb2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-02.jpg\",\"id\":2174},\"title\":\"Family Business Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"53cb55ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-03.jpg\",\"id\":2175},\"title\":\"Excellence in Exporting\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false},{\"id\":\"163c94fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":57.99600000000000221689333557151257991790771484375,\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award.png\",\"id\":2180},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"37\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"css_classes\":\"order3\"},\"elements\":[{\"id\":\"12c3a0ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"We believe, the passion trying & skill can make a top-performing company. \",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3cd4e5d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-year.png\",\"id\":2179},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e34c46f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Awards We Got!\",\"title_tag\":\"h5\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6844b478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order2\"},\"elements\":[{\"id\":\"5d7fd13c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-04.jpg\",\"id\":2176},\"title\":\"Global Safety Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"150cbc8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-05.jpg\",\"id\":2177},\"title\":\"Sales Excellence Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"486993ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/award-06.jpg\",\"id\":2178},\"title\":\"Top Leading Global  Trade\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2df47be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fc868f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ef4969e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & more news from resource library.\",\"sub_title\":\"Pricing\",\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"537e3d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"561e65e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We would love to share a similar experience and how I\\nlearned some valuable lessons during a downturn.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1997081e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"183234bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ca697e\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35afcf2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c8c38a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14eada90\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1068,2269,'page_h_phone',''),(1069,2269,'page_h_time',''),(1070,2269,'loading_page','themeoption'),(1071,2269,'loading_type','style1'),(1072,2269,'page_back_totop','themeoption'),(1073,2269,'rs_page_bg_color','#ffffff'),(1074,2269,'_elementor_controls_usage','a:22:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:42;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:6:\"margin\";i:13;s:7:\"z_index\";i:1;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:33;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:26;s:15:\"stretch_section\";i:8;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:6;s:16:\"background_image\";i:6;s:19:\"background_position\";i:6;s:21:\"background_attachment\";i:3;s:15:\"background_size\";i:4;s:17:\"background_repeat\";i:3;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:4;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:14;s:7:\"padding\";i:21;s:14:\"padding_tablet\";i:8;s:14:\"padding_mobile\";i:3;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:11;s:20:\"typography_font_size\";i:10;s:27:\"typography_font_size_tablet\";i:9;s:22:\"typography_line_height\";i:10;s:29:\"typography_line_height_tablet\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:11;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:4;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:13;s:27:\"title_typography_typography\";i:12;s:26:\"title_typography_font_size\";i:9;s:33:\"title_typography_font_size_tablet\";i:12;s:28:\"title_typography_line_height\";i:9;s:35:\"title_typography_line_height_tablet\";i:9;s:18:\"title_space_bottom\";i:6;s:5:\"style\";i:10;s:10:\"ct_animate\";i:11;s:11:\"title_color\";i:6;s:9:\"title_tag\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:3;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_feature\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:2:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:5:\"style\";i:1;s:6:\"layout\";i:1;}}}}s:12:\"ct_piecharts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_piecharts\";a:5:{s:5:\"title\";i:2;s:9:\"bar_color\";i:2;s:11:\"description\";i:2;s:10:\"ct_animate\";i:2;s:16:\"percentage_value\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:2;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:14:\"pause_on_hover\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:2;s:10:\"ct_animate\";i:2;s:8:\"style_l1\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:8:\"infinite\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:8:\"bg_image\";i:4;s:4:\"size\";i:2;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:4;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:8:\"ct_award\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:6;s:5:\"title\";i:6;s:4:\"type\";i:6;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(1166,3497,'_wp_page_template','default'),(1167,3497,'custom_header','1'),(1168,3497,'header_layout','2'),(1169,3497,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1170,3497,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1171,3497,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1172,3497,'page_h_phone',''),(1173,3497,'page_h_time',''),(1174,3497,'custom_pagetitle','show'),(1175,3497,'custom_title','Testimonials'),(1176,3497,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1177,3497,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1178,3497,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1179,3497,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1180,3497,'show_sidebar_page',''),(1181,3497,'sidebar_page_pos','right'),(1182,3497,'loading_page','themeoption'),(1183,3497,'loading_type','style1'),(1184,3497,'loading_color',''),(1185,3497,'custom_footer','0'),(1186,3497,'footer_layout_custom',''),(1187,3497,'page_back_totop','themeoption'),(1188,3497,'slide_template','default'),(1189,3497,'_elementor_edit_mode','builder'),(1190,3497,'_elementor_template_type','wp-page'),(1191,3497,'_elementor_version','3.0.9'),(1192,3497,'_elementor_data','[{\"id\":\"c89f3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2687c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3010a357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"37\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e1e7a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d328236\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734d13ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b96728d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e1f2d9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"195eecf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"cd84e60\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b63d25b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"525775b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"1b90e55\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b6453f9\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[]},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"8a6d9b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50718662\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/02\\/theme23.jpg\",\"id\":6991},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"320475e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"79a188fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1ca7ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c91988f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"58f371a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"512dec0\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a02cad5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"102df0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc1ab47\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4780c367\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17cd84b8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1193,3497,'p_page_title_color',''),(1194,3497,'ptitle_overlay','themeoption'),(1195,3497,'rs_page_bg_color','#ffffff'),(1196,3497,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;s:11:\"title_color\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:11:\"btn_padding\";i:2;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:2;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1197,3500,'_wp_page_template','default'),(1198,3500,'custom_header','1'),(1199,3500,'header_layout','2'),(1200,3500,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1201,3500,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1202,3500,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1203,3500,'page_h_phone',''),(1204,3500,'page_h_time',''),(1205,3500,'custom_pagetitle','show'),(1206,3500,'custom_title','Testimonials'),(1207,3500,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1208,3500,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1209,3500,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1210,3500,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1211,3500,'show_sidebar_page',''),(1212,3500,'sidebar_page_pos','right'),(1213,3500,'loading_page','themeoption'),(1214,3500,'loading_type','style1'),(1215,3500,'loading_color',''),(1216,3500,'custom_footer','0'),(1217,3500,'footer_layout_custom',''),(1218,3500,'page_back_totop','themeoption'),(1219,3500,'slide_template','default'),(1220,3500,'_elementor_edit_mode','builder'),(1221,3500,'_elementor_template_type','wp-page'),(1222,3500,'_elementor_version','2.8.5'),(1223,3500,'_elementor_data','[{\"id\":\"37b0d9e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e28c4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7dfaa5c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219b9a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ba6390\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"50757a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad2eb45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ba640c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"7b31aa02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16c849ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"760b3a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39e31d8c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1224,3500,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1225,3500,'p_page_title_color',''),(1226,3500,'ptitle_overlay','themeoption'),(1227,3500,'rs_page_bg_color','#ffffff'),(1228,3502,'_wp_page_template','default'),(1229,3502,'custom_header','1'),(1230,3502,'header_layout','24'),(1231,3502,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1232,3502,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1233,3502,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1234,3502,'page_h_phone',''),(1235,3502,'page_h_time',''),(1236,3502,'custom_pagetitle','hide'),(1237,3502,'custom_title','Testimonials'),(1238,3502,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1239,3502,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(1240,3502,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1241,3502,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1242,3502,'show_sidebar_page',''),(1243,3502,'sidebar_page_pos','right'),(1244,3502,'loading_page','themeoption'),(1245,3502,'loading_type','style1'),(1246,3502,'loading_color',''),(1247,3502,'custom_footer','0'),(1248,3502,'footer_layout_custom',''),(1249,3502,'page_back_totop','themeoption'),(1251,3502,'_elementor_edit_mode','builder'),(1252,3502,'_elementor_template_type','wp-page'),(1253,3502,'_elementor_version','3.5.3'),(1254,3502,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1255,3502,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1256,3502,'p_page_title_color',''),(1257,3502,'ptitle_overlay','themeoption'),(1259,3504,'_wp_page_template','default'),(1260,3504,'custom_header','1'),(1261,3504,'header_layout','6'),(1262,3504,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1263,3504,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1264,3504,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1265,3504,'page_h_phone','(210) 123-451'),(1266,3504,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1267,3504,'custom_pagetitle','show'),(1268,3504,'custom_title','Pricing'),(1269,3504,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(1270,3504,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";}'),(1271,3504,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}'),(1272,3504,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1273,3504,'show_sidebar_page',''),(1274,3504,'sidebar_page_pos','right'),(1275,3504,'loading_page','themeoption'),(1276,3504,'loading_type','style1'),(1277,3504,'loading_color',''),(1278,3504,'custom_footer','0'),(1279,3504,'footer_layout_custom',''),(1280,3504,'page_back_totop','themeoption'),(1281,3504,'slide_template','default'),(1282,3504,'_elementor_edit_mode','builder'),(1283,3504,'_elementor_template_type','wp-page'),(1284,3504,'_elementor_version','2.8.5'),(1285,3504,'_elementor_data','[{\"id\":\"729d3801\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"722c279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"198f4d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"sub_title\":\"Pricing\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"700\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"style\":\"st-line-left3\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6ddd7a0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab9c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\\nbusiness\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3cf44a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2b5a8902\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d4608fc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8e4982\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"35533b12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e67feab\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1286,3504,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:5:\"style\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1287,3504,'p_page_title_color',''),(1288,3504,'ptitle_overlay','themeoption'),(1289,3504,'rs_page_bg_color','#ffffff'),(1290,3504,'p_h_style1','themeoption'),(1291,3504,'h_custom_menu',''),(1292,3504,'h_custom_menu_left',''),(1293,3504,'h_custom_menu_right',''),(1294,3504,'ptitle_breadcrumb_page','themeoption'),(1295,3504,'ptitle_breadcrumb_color',''),(1296,3504,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1297,3506,'_wp_page_template','default'),(1298,3506,'_elementor_controls_usage','a:0:{}'),(1299,3506,'custom_header',''),(1300,3506,'header_layout','1'),(1301,3506,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1302,3506,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1303,3506,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1304,3506,'page_h_phone',''),(1305,3506,'page_h_time',''),(1306,3506,'custom_pagetitle','themeoption'),(1307,3506,'custom_title',''),(1308,3506,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1309,3506,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1310,3506,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1311,3506,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1312,3506,'show_sidebar_page',''),(1313,3506,'sidebar_page_pos','right'),(1314,3506,'loading_page','themeoption'),(1315,3506,'loading_type','style1'),(1316,3506,'loading_color',''),(1317,3506,'custom_footer',''),(1318,3506,'footer_layout_custom',''),(1319,3506,'page_back_totop','themeoption'),(1320,3506,'slide_template','default'),(1321,3508,'_wp_page_template','default'),(1322,3508,'_elementor_controls_usage','a:0:{}'),(1323,3508,'custom_header',''),(1324,3508,'header_layout','1'),(1325,3508,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1326,3508,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1327,3508,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1328,3508,'page_h_phone',''),(1329,3508,'page_h_time',''),(1330,3508,'custom_pagetitle','themeoption'),(1331,3508,'custom_title',''),(1332,3508,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1333,3508,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1334,3508,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1335,3508,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1336,3508,'show_sidebar_page',''),(1337,3508,'sidebar_page_pos','right'),(1338,3508,'loading_page','themeoption'),(1339,3508,'loading_type','style1'),(1340,3508,'loading_color',''),(1341,3508,'custom_footer',''),(1342,3508,'footer_layout_custom',''),(1343,3508,'page_back_totop','themeoption'),(1344,3508,'slide_template','default'),(1404,3514,'_wp_page_template','default'),(1405,3514,'custom_header','1'),(1406,3514,'header_layout','24'),(1407,3514,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1408,3514,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1409,3514,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1410,3514,'page_h_phone',''),(1411,3514,'page_h_time',''),(1412,3514,'custom_pagetitle','hide'),(1413,3514,'custom_title','Contact'),(1414,3514,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1415,3514,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(1416,3514,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1417,3514,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1418,3514,'show_sidebar_page',''),(1419,3514,'sidebar_page_pos','right'),(1420,3514,'loading_page','themeoption'),(1421,3514,'loading_type','style1'),(1422,3514,'loading_color',''),(1423,3514,'custom_footer','0'),(1424,3514,'footer_layout_custom',''),(1425,3514,'page_back_totop','themeoption'),(1427,3514,'_elementor_edit_mode','builder'),(1428,3514,'_elementor_template_type','wp-page'),(1429,3514,'_elementor_version','3.5.3'),(1430,3514,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\",\"id\":8884,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1431,3514,'p_page_title_color',''),(1432,3514,'ptitle_overlay','themeoption'),(1434,3514,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1435,3516,'_wp_page_template','default'),(1436,3516,'custom_header','1'),(1437,3516,'header_layout','6'),(1438,3516,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1439,3516,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1440,3516,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1441,3516,'page_h_phone','(210) 123-451'),(1442,3516,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1443,3516,'custom_pagetitle','show'),(1444,3516,'custom_title','Team'),(1445,3516,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1446,3516,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(1447,3516,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1448,3516,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1449,3516,'show_sidebar_page',''),(1450,3516,'sidebar_page_pos','right'),(1451,3516,'loading_page','themeoption'),(1452,3516,'loading_type','style1'),(1453,3516,'loading_color',''),(1454,3516,'custom_footer','0'),(1455,3516,'footer_layout_custom',''),(1456,3516,'page_back_totop','themeoption'),(1457,3516,'slide_template','default'),(1458,3516,'_elementor_edit_mode','builder'),(1459,3516,'_elementor_template_type','wp-page'),(1460,3516,'_elementor_version','2.8.5'),(1461,3516,'_elementor_data','[{\"id\":\"de32beb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"02fe18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50aea1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team members\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da4fc80\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"4e903ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18766663\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f3225e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37234e60\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1462,3516,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1463,3516,'p_page_title_color',''),(1464,3516,'ptitle_overlay','themeoption'),(1465,3516,'rs_page_bg_color','#ffffff'),(1466,3518,'_wp_page_template','default'),(1467,3518,'custom_header','1'),(1468,3518,'header_layout','6'),(1469,3518,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1470,3518,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1471,3518,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1472,3518,'page_h_phone','(210) 123-451'),(1473,3518,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1474,3518,'custom_pagetitle','show'),(1475,3518,'custom_title','Team'),(1476,3518,'ptitle_bg','a:2:{s:16:\"background-image\";s:86:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1477,3518,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"76px\";s:14:\"padding-bottom\";s:4:\"76px\";s:5:\"units\";s:2:\"px\";}'),(1478,3518,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1479,3518,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1480,3518,'show_sidebar_page',''),(1481,3518,'sidebar_page_pos','right'),(1482,3518,'loading_page','themeoption'),(1483,3518,'loading_type','style1'),(1484,3518,'loading_color',''),(1485,3518,'custom_footer','0'),(1486,3518,'footer_layout_custom',''),(1487,3518,'page_back_totop','themeoption'),(1488,3518,'slide_template','default'),(1489,3518,'_elementor_edit_mode','builder'),(1490,3518,'_elementor_template_type','wp-page'),(1491,3518,'_elementor_version','2.8.5'),(1492,3518,'_elementor_data','[{\"id\":\"447525ee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"86\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d46c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"239427c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We always work with a great team.\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"st-line-left3\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36cf3dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"58\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"77423db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#A8908F\"},\"elements\":[{\"id\":\"5b017e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5101bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"553ef78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11b392d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37ab8395\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6edd789c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28643b20\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"64260a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e4196fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"784d7355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6708c127\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1493,3518,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"ct_animate\";i:1;s:27:\"title_typography_typography\";i:1;s:5:\"style\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:13:\"content_list3\";i:2;}s:12:\"grid_section\";a:6:{s:14:\"thumbnail_size\";i:2;s:26:\"thumbnail_custom_dimension\";i:2;s:6:\"col_md\";i:2;s:6:\"col_lg\";i:2;s:6:\"col_xl\";i:2;s:10:\"ct_animate\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:17:\"btn_border_radius\";i:1;s:11:\"btn_padding\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1494,3518,'p_page_title_color',''),(1495,3518,'ptitle_overlay','themeoption'),(1496,3518,'rs_page_bg_color','#ffffff'),(1497,3520,'_wp_page_template','default'),(1498,3520,'custom_header',''),(1499,3520,'header_layout','1'),(1500,3520,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1501,3520,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1502,3520,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1503,3520,'page_h_phone',''),(1504,3520,'page_h_time',''),(1505,3520,'custom_pagetitle','show'),(1506,3520,'custom_title','Team'),(1507,3520,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1508,3520,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1509,3520,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1510,3520,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1511,3520,'show_sidebar_page',''),(1512,3520,'sidebar_page_pos','right'),(1513,3520,'loading_page','themeoption'),(1514,3520,'loading_type','style1'),(1515,3520,'loading_color',''),(1516,3520,'custom_footer',''),(1517,3520,'footer_layout_custom',''),(1518,3520,'page_back_totop','themeoption'),(1519,3520,'slide_template','default'),(1520,3520,'_elementor_edit_mode','builder'),(1521,3520,'_elementor_template_type','wp-page'),(1522,3520,'_elementor_version','2.8.5'),(1523,3520,'_elementor_data','[{\"id\":\"8c17192\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E4EAEE\",\"padding\":{\"unit\":\"px\",\"top\":\"060\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a445675\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94d2f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cb3f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"5e7c953\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"cfdc757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"828f9d3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8a0a04a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"sfdsdaf\",\"position\":\"\",\"desc\":\"\",\"social\":\"[]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90df330\"}],\"content_list4\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"be8b76d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7516d24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"505cae5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"a352cd2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b8baca1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9c4e5eb\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"14f1627\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b719730\"}],\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"267\",\"height\":\"352\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"1d25b5be\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1524,3520,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:13:\"content_list3\";i:1;s:13:\"content_list4\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1525,4355,'_wp_page_template','default'),(1526,4355,'custom_header',''),(1527,4355,'header_layout','13'),(1528,4355,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1529,4355,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1530,4355,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1531,4355,'page_h_phone',''),(1532,4355,'page_h_time',''),(1533,4355,'custom_pagetitle','themeoption'),(1534,4355,'custom_title',''),(1535,4355,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1536,4355,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1537,4355,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1538,4355,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1539,4355,'show_sidebar_page',''),(1540,4355,'sidebar_page_pos','right'),(1541,4355,'loading_page','themeoption'),(1542,4355,'loading_type','style1'),(1543,4355,'custom_footer',''),(1544,4355,'footer_layout_custom',''),(1545,4355,'page_back_totop','themeoption'),(1546,4355,'slide_template','default'),(1547,4355,'rs_page_bg_color','#ffffff'),(1548,4355,'_elementor_edit_mode','builder'),(1549,4355,'_elementor_template_type','wp-page'),(1550,4355,'_elementor_version','2.9.7'),(1551,4355,'_elementor_data','[{\"id\":\"314139d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c75a3f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"9ed55c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3aaa0285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17375fff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df27a3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c0a81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30af93e9\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4585a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dfe8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"36452bba\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1552,4355,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1553,569,'slide_template','default'),(1554,569,'portfolio_sub_title','Plan Estimations'),(1555,569,'_wp_page_template','default'),(1556,569,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1557,569,'_elementor_edit_mode','builder'),(1558,569,'_elementor_template_type','wp-post'),(1559,569,'_elementor_version','2.7.5'),(1560,569,'_elementor_data','[{\"id\":\"1ef46e13\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"767baefc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20c4bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4d2f320e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b770116\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"100163c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67225c89\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"411b8936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b8bdd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bf80737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fund Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"65162c9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed4b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f51c582\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46012a39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6cb5cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64fa3143\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1561,569,'_wp_old_slug','rupayan-taj'),(1562,569,'_thumbnail_id','1541'),(1563,569,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1564,571,'slide_template','default'),(1565,571,'portfolio_sub_title','Exterior Design'),(1566,571,'_wp_page_template','default'),(1567,571,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1568,571,'_elementor_edit_mode','builder'),(1569,571,'_elementor_template_type','wp-post'),(1570,571,'_elementor_version','2.7.5'),(1571,571,'_elementor_data','[{\"id\":\"277bf312\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc56f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"624674ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"340c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c9ecac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51426840\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67eae2ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"303d0652\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"141dc37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb2aea0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"141fe9f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"747aff36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e895bd\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10eb7f3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"efe11f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ac9c126\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1572,571,'_wp_old_slug','razia-tower'),(1573,571,'_thumbnail_id','1538'),(1574,571,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1575,573,'slide_template','default'),(1576,573,'portfolio_sub_title','Plan Certification'),(1577,573,'_wp_page_template','default'),(1578,573,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1579,573,'_elementor_edit_mode','builder'),(1580,573,'_elementor_template_type','wp-post'),(1581,573,'_elementor_version','2.7.5'),(1582,573,'_elementor_data','[{\"id\":\"57ce9589\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b35ef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6681b63f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"391d5678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"391b9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b45b4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31b2a3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72434400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"335ce718\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"645505c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market Expansion\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68730ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9e6a449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678da7c9\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"476936cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"41c2b24b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1583,573,'_wp_old_slug','fr-tower'),(1584,573,'_thumbnail_id','1536'),(1585,573,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1586,575,'slide_template',''),(1587,575,'portfolio_sub_title','Property Sketching'),(1588,575,'_wp_page_template','default'),(1589,575,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1590,575,'_elementor_edit_mode','builder'),(1591,575,'_elementor_template_type','wp-post'),(1592,575,'_elementor_version','2.7.5'),(1593,575,'_elementor_data','[{\"id\":\"1f47c785\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"795b4afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d7a8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"273c1c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"41bca8c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1485b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e67225\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c35b751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-06.jpg\",\"id\":1535},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ac734f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1819ba63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revenue Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36279b37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220d351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d838b\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4093c7be\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43083958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c0c4bc5\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1594,575,'_wp_old_slug','rio-villa'),(1595,575,'_thumbnail_id','4805'),(1596,575,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1597,575,'custom_pagetitle','themeoption'),(1598,575,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1599,575,'p_page_title_color',''),(1600,575,'ptitle_overlay','themeoption'),(1601,575,'ptitle_breadcrumb','themeoption'),(1602,575,'rs_page_bg_color',''),(1603,577,'slide_template','default'),(1604,577,'portfolio_sub_title','Material Supply'),(1605,577,'_wp_page_template','default'),(1606,577,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1607,577,'_elementor_edit_mode','builder'),(1608,577,'_elementor_template_type','wp-post'),(1609,577,'_elementor_data','[{\"id\":\"1dfbc5d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a482228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab965a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7f52b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b8ece51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70d2235d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbed3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"925f00f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43c59fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5573d38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Court Imperial\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"187f95bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a74858\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fb27f40\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afe2c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11319ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"92f0806\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1610,577,'_elementor_version','2.7.5'),(1611,577,'_thumbnail_id','1534'),(1612,577,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1613,579,'slide_template',''),(1614,579,'post_views_count','2'),(1615,579,'portfolio_sub_title','House Remodel'),(1616,579,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1617,579,'_elementor_edit_mode','builder'),(1618,579,'_elementor_template_type','wp-post'),(1619,579,'_elementor_version','2.7.5'),(1620,579,'_wp_page_template','default'),(1621,579,'_elementor_data','[{\"id\":\"5082f78d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b5819a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44d39aa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"19f72c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5514f494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"105945eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3b933b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66ab5385\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-04.jpg\",\"id\":1533},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2519c386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7890d411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a9d30b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb90524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a4abaa5\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2020\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.consultio.com\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64729566\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36235ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"302e5231\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1622,579,'_wp_old_slug','city-centre'),(1623,579,'_thumbnail_id','4804'),(1624,579,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1625,579,'custom_pagetitle','themeoption'),(1626,579,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1627,579,'p_page_title_color',''),(1628,579,'ptitle_overlay','themeoption'),(1629,579,'ptitle_breadcrumb','themeoption'),(1630,579,'rs_page_bg_color',''),(1631,579,'_wp_old_date','2019-11-16'),(1632,579,'_wp_old_date','2019-12-16'),(1633,581,'slide_template',''),(1634,581,'post_views_count','3'),(1635,581,'portfolio_sub_title','Plan Estimations'),(1636,581,'_wp_page_template','default'),(1637,581,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1638,581,'_elementor_edit_mode','builder'),(1639,581,'_elementor_template_type','wp-post'),(1640,581,'_elementor_version','2.7.5'),(1641,581,'_elementor_data','[{\"id\":\"fd2936\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d117fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6728f356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"37246f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"20294c52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ad3f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f2abeab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b712b50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-03.jpg\",\"id\":1532},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3abbf614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d31227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chan Agency\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30a0ede6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"334c2cd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"287cdf86\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f9eafa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74e7fa37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f015042\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1642,581,'_wp_old_slug','borak-mehnur'),(1643,581,'_thumbnail_id','1536'),(1644,581,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1645,581,'custom_pagetitle','themeoption'),(1646,581,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1647,581,'p_page_title_color',''),(1648,581,'ptitle_overlay','themeoption'),(1649,581,'ptitle_breadcrumb','themeoption'),(1650,581,'rs_page_bg_color',''),(1651,581,'ptitle_breadcrumb_page','themeoption'),(1652,583,'slide_template',''),(1653,583,'post_views_count','2'),(1654,583,'portfolio_sub_title','Interior Design'),(1655,583,'_wp_page_template','default'),(1656,583,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1657,583,'_elementor_edit_mode','builder'),(1658,583,'_elementor_template_type','wp-post'),(1659,583,'_elementor_version','2.7.5'),(1660,583,'_elementor_data','[{\"id\":\"15e9dfce\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"258e2d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e40afd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7388310\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"70ed0350\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48fe0bbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc9639d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"714b5cd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b03d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"260a630d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49a4ce28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35687c3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bb9e3ca\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a34e962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a68a8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f079b53\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1661,583,'_wp_old_slug','rf-tower'),(1662,583,'_thumbnail_id','1539'),(1663,583,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1664,583,'custom_pagetitle','themeoption'),(1665,583,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1666,583,'p_page_title_color',''),(1667,583,'ptitle_overlay','themeoption'),(1668,583,'ptitle_breadcrumb','themeoption'),(1669,583,'rs_page_bg_color',''),(1670,583,'_wp_old_slug','digital-analysis'),(1671,583,'ptitle_breadcrumb_page','themeoption'),(1672,583,'_wp_old_date','2019-11-13'),(1673,1738,'_wp_page_template','default'),(1674,1738,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1675,1738,'portfolio_sub_title',''),(1676,1738,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1677,1738,'slide_template','default'),(1678,1738,'_wp_old_date','2019-12-03'),(1679,1738,'_thumbnail_id','1543'),(1680,1738,'_elementor_edit_mode','builder'),(1681,1738,'_elementor_template_type','wp-post'),(1682,1738,'_elementor_version','2.7.5'),(1683,1738,'_elementor_data','[{\"id\":\"4cc8a858\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a9bf111\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dacb188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"29c0a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ccba79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"364c6a73\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"121febed\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd74cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33db605f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ad1e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consumer Products\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"588e191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356281be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4caa3bf3\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d2447a2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ae03e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34a7476f\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1684,1740,'_wp_page_template','default'),(1685,1740,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1686,1740,'portfolio_sub_title',''),(1687,1740,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1688,1740,'slide_template','default'),(1689,1740,'_wp_old_date','2019-12-03'),(1690,1740,'_thumbnail_id','1542'),(1691,1740,'_elementor_edit_mode','builder'),(1692,1740,'_elementor_template_type','wp-post'),(1693,1740,'_elementor_version','2.7.5'),(1694,1740,'_elementor_data','[{\"id\":\"43507583\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cf40545\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4c8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6d7538c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d10b19e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32acc966\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a4ca7b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"700a2a24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e4e5ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68b48f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68c26d42\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccdfb2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31d7d807\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f447e11\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"432e9342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69919d4b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1695,1742,'_wp_page_template','default'),(1696,1742,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1697,1742,'portfolio_sub_title',''),(1698,1742,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1699,1742,'slide_template',''),(1700,1742,'_thumbnail_id','1538'),(1701,1742,'_elementor_edit_mode','builder'),(1702,1742,'_elementor_template_type','wp-post'),(1703,1742,'_elementor_version','2.7.5'),(1704,1742,'_elementor_data','[{\"id\":\"33631ddb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64d9501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1db4ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e9611ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2236e97b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"630f7823\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5851b0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21fe0299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"666172d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49eb497\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"29b73151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e998dc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f16b749\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a4e8bca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dc2cbfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fdb4fd3\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1705,1742,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:94:\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team4-150x150.jpg\";}}'),(1706,1742,'custom_pagetitle','themeoption'),(1707,1742,'ptitle_breadcrumb_on','hidden'),(1708,1742,'rs_page_bg_color',''),(1709,1742,'ptitle_breadcrumb','themeoption'),(1710,1742,'p_page_title_color',''),(1711,1742,'ptitle_overlay','themeoption'),(1712,1742,'ptitle_breadcrumb_page','themeoption'),(1713,1766,'_thumbnail_id','1537'),(1714,1766,'_wp_page_template','default'),(1715,1766,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1716,1766,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1717,1766,'slide_template',''),(1718,1766,'_wp_old_date','2019-12-03'),(1719,1766,'_elementor_edit_mode','builder'),(1720,1766,'_elementor_template_type','wp-post'),(1721,1766,'_elementor_version','2.7.5'),(1722,1766,'_elementor_data','[{\"id\":\"5bba157\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bbc1efb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d608d10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"58fafd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d5571d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5988917e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fc73221\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3caff8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5f41740e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"288149d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"StartUp Business\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78cd2015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fb53d40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3c379\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25631488\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59578091\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a06c1f7\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1723,4357,'_wp_page_template','default'),(1724,4357,'custom_header',''),(1725,4357,'header_layout','13'),(1726,4357,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1727,4357,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1728,4357,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1729,4357,'page_h_phone',''),(1730,4357,'page_h_time',''),(1731,4357,'custom_pagetitle','themeoption'),(1732,4357,'custom_title',''),(1733,4357,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1734,4357,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1735,4357,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1736,4357,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1737,4357,'show_sidebar_page',''),(1738,4357,'sidebar_page_pos','right'),(1739,4357,'loading_page','themeoption'),(1740,4357,'loading_type','style1'),(1741,4357,'custom_footer',''),(1742,4357,'footer_layout_custom',''),(1743,4357,'page_back_totop','themeoption'),(1744,4357,'slide_template','default'),(1745,4357,'rs_page_bg_color','#ffffff'),(1746,4357,'_elementor_edit_mode','builder'),(1747,4357,'_elementor_template_type','wp-page'),(1748,4357,'_elementor_version','2.9.7'),(1749,4357,'_elementor_data','[{\"id\":\"3a25e46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17ca4b39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1d2e5174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"752fb011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1de1c123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"618920ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56e33978\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"267e41cb\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba4bd3a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199e3145\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62540a03\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1750,4357,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1751,4359,'_wp_page_template','default'),(1752,4359,'custom_header',''),(1753,4359,'header_layout','13'),(1754,4359,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1755,4359,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1756,4359,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1757,4359,'page_h_phone',''),(1758,4359,'page_h_time',''),(1759,4359,'custom_pagetitle','themeoption'),(1760,4359,'custom_title',''),(1761,4359,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1762,4359,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1763,4359,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1764,4359,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1765,4359,'show_sidebar_page',''),(1766,4359,'sidebar_page_pos','right'),(1767,4359,'loading_page','themeoption'),(1768,4359,'loading_type','style1'),(1769,4359,'custom_footer',''),(1770,4359,'footer_layout_custom',''),(1771,4359,'page_back_totop','themeoption'),(1772,4359,'slide_template','default'),(1773,4359,'rs_page_bg_color','#ffffff'),(1774,4359,'_elementor_edit_mode','builder'),(1775,4359,'_elementor_template_type','wp-page'),(1776,4359,'_elementor_version','2.9.7'),(1777,4359,'_elementor_data','[{\"id\":\"5a6ca294\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cccd8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"64f9a477\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3f489776\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"508c91e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cbc083\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"75e7ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"36e3181f\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"306e1c5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c56cf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d632435\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1778,4359,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1779,5147,'_wp_page_template','default'),(1780,5147,'custom_header','0'),(1781,5147,'header_layout','23'),(1782,5147,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1783,5147,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1784,5147,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1785,5147,'page_h_phone',''),(1786,5147,'page_h_time',''),(1787,5147,'h_custom_menu','60'),(1788,5147,'h_custom_menu_left',''),(1789,5147,'h_custom_menu_right',''),(1790,5147,'custom_pagetitle','hide'),(1791,5147,'custom_title',''),(1792,5147,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1793,5147,'p_page_title_color',''),(1794,5147,'ptitle_overlay','themeoption'),(1795,5147,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1796,5147,'ptitle_breadcrumb_page','themeoption'),(1797,5147,'ptitle_breadcrumb_color',''),(1798,5147,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1799,5147,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1800,5147,'show_sidebar_page',''),(1801,5147,'sidebar_page_pos','right'),(1802,5147,'loading_page','themeoption'),(1803,5147,'loading_type','style1'),(1804,5147,'custom_footer','0'),(1805,5147,'footer_layout_custom',''),(1806,5147,'page_back_totop','themeoption'),(1807,5147,'slide_template','default'),(1808,5147,'rs_page_bg_color','#ffffff'),(1809,5147,'_elementor_edit_mode','builder'),(1810,5147,'_elementor_template_type','wp-page'),(1811,5147,'_elementor_version','3.1.4'),(1812,5147,'_elementor_data','[{\"id\":\"56cd22bc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"154c4dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9f94e7d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75cf0c2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"a2b025\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a0fd7f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e41b709\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"5090d321\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"28c530fc\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49e66e0a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"22a515ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"20094d95\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d6c888b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"402ed903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"44370903\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4c0e6186\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"2f02b443\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"50471863\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"63df81e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75a4532f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ee4106a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"578e3b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ce932d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6496048\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4438242f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"8cf4180\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"252fdc43\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"7cc940a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"18c6228e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6da8fbf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6e24622a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3266c5e7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"3b1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fa35cb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1f7de5c\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"1fb9f7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f096153\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"506c4181\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"425d90ba\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c6fdf89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56b5b922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2fb93dd6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662a40c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"1b8758d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"6f1944b7\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"222a32a8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab99b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"65c848bd\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6e72291b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"399d6b3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dd55088\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"529a8cc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"535f1eff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ed46ff\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5cc0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"645beeda\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3e2f768\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6943944d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"362a3f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"48468264\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"76af40bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3afa6af\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"75b7486\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4ac69d63\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"548f1edb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"_element_id\":\"section-projects\"},\"elements\":[{\"id\":\"4b75359f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a2111c2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"13dbad93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4dce0ee1\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"We\\u2019re driven to make the complex simple.\\n                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"687c31d1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"4f84a1bc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a7b2c70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5472e325\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"40f70c8e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3ceecf30\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c473c71\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1c5dd7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"30b07e5f\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"422e19a3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"5472b6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"754b97aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b9f6574\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"2a084eb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"4c63f5f8\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"22935b83\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"c1331ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b1869a9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"680a78bb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"89c1cfe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ced1f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7e3a27b4\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"58e9c516\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3491f267\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"3422f990\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2fcc81d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"5590e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"62727d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4edc947\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"53256b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6224239f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a5a5193\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"2fa3c337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"309f1d4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"16ed40d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"49867f8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"33f21133\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"690758c0\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"1c9f6556\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"27c86dc8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a1df1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4daf0420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63818a27\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d14a24a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75c30f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"44e19b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3782bd2\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b10bcbe\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"4741742e\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12e71f46\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"75ef369a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ecab95a\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"591a0a6f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"775f3141\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"44fd9e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"394795ce\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1813,5147,'p_h_style1','themeoption'),(1814,5147,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1815,5147,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:9:{s:11:\"_element_id\";i:7;s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(1819,5348,'_wp_page_template','default'),(1820,5348,'custom_header',''),(1821,5348,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1822,5348,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1823,5348,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1824,5348,'page_h_phone',''),(1825,5348,'page_h_time',''),(1826,5348,'h_custom_menu',''),(1827,5348,'h_custom_menu_left',''),(1828,5348,'h_custom_menu_right',''),(1829,5348,'custom_pagetitle','themeoption'),(1830,5348,'custom_title',''),(1831,5348,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1832,5348,'p_page_title_color',''),(1833,5348,'ptitle_overlay','themeoption'),(1834,5348,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1835,5348,'ptitle_breadcrumb_page','themeoption'),(1836,5348,'ptitle_breadcrumb_color',''),(1837,5348,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1838,5348,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";}'),(1839,5348,'show_sidebar_page',''),(1840,5348,'sidebar_page_pos','right'),(1841,5348,'loading_page','themeoption'),(1842,5348,'loading_type','style1'),(1843,5348,'custom_footer',''),(1844,5348,'footer_layout_custom',''),(1845,5348,'page_back_totop','themeoption'),(1846,5348,'slide_template','default'),(1847,5348,'rs_page_bg_color','#ffffff'),(1848,5348,'_elementor_edit_mode','builder'),(1849,5348,'_elementor_template_type','wp-page'),(1850,5348,'_elementor_version','3.0.11'),(1851,5348,'_elementor_data','[]'),(1852,6370,'_wp_page_template','default'),(1853,6370,'custom_header',''),(1854,6370,'header_layout','1'),(1855,6370,'p_h_style1','themeoption'),(1856,6370,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1857,6370,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1858,6370,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1859,6370,'page_h_phone',''),(1860,6370,'page_h_time',''),(1861,6370,'h_custom_menu',''),(1862,6370,'h_custom_menu_left',''),(1863,6370,'h_custom_menu_right',''),(1864,6370,'custom_pagetitle','themeoption'),(1865,6370,'custom_title',''),(1866,6370,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1867,6370,'p_page_title_color',''),(1868,6370,'ptitle_overlay','themeoption'),(1869,6370,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1870,6370,'ptitle_breadcrumb_page','themeoption'),(1871,6370,'ptitle_breadcrumb_color',''),(1872,6370,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1873,6370,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1874,6370,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";}'),(1875,6370,'show_sidebar_page',''),(1876,6370,'sidebar_page_pos','right'),(1877,6370,'loading_page','themeoption'),(1878,6370,'loading_type','style1'),(1879,6370,'custom_footer',''),(1880,6370,'footer_layout_custom',''),(1881,6370,'page_back_totop','themeoption'),(1882,6370,'_elementor_edit_mode','builder'),(1883,6370,'_elementor_template_type','wp-page'),(1884,6370,'_elementor_version','3.1.1'),(1885,6370,'_elementor_data','[{\"id\":\"effd98f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"7341a9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0495e88\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false}]'),(1886,6370,'_elementor_controls_usage','a:3:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;}}}}}'),(1887,7107,'_wp_page_template','default'),(1888,7107,'custom_header',''),(1889,7107,'header_layout','24'),(1890,7107,'p_h_style1','themeoption'),(1891,7107,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1892,7107,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1893,7107,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1894,7107,'page_h_phone',''),(1895,7107,'page_h_time',''),(1896,7107,'h_custom_menu',''),(1897,7107,'h_custom_menu_left',''),(1898,7107,'h_custom_menu_right',''),(1899,7107,'custom_pagetitle','hide'),(1900,7107,'custom_title',''),(1901,7107,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1902,7107,'p_page_title_color',''),(1903,7107,'ptitle_overlay','themeoption'),(1904,7107,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1905,7107,'ptitle_breadcrumb_page','themeoption'),(1906,7107,'ptitle_breadcrumb_color',''),(1907,7107,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1908,7107,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1909,7107,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";}'),(1910,7107,'show_sidebar_page',''),(1911,7107,'sidebar_page_pos','right'),(1912,7107,'loading_page','themeoption'),(1913,7107,'loading_type','style1'),(1914,7107,'custom_footer',''),(1915,7107,'footer_layout_custom',''),(1916,7107,'page_back_totop','themeoption'),(1917,7107,'slide_template','default'),(1918,7107,'rs_page_bg_color','#ffffff'),(1919,7107,'_elementor_edit_mode','builder'),(1920,7107,'_elementor_template_type','wp-page'),(1921,7107,'_elementor_version','3.1.4'),(1922,7107,'_elementor_data','[{\"id\":\"79baf07\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67000000000000003996802888650563545525074005126953125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"567ea97\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e90549\",\"elType\":\"widget\",\"settings\":{\"title\":\"Log in to Your Account\",\"btn_label\":\"New to Consultio?\",\"btn_text\":\"Sign Up\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/sign-up\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"footer_text\":\"Forgot your password?\",\"footer_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/my-account\\/lost-password\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_user\"}],\"isInner\":false}],\"isInner\":false}]'),(1923,7107,'_elementor_controls_usage','a:3:{s:7:\"ct_user\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:6:{s:5:\"title\";i:1;s:9:\"btn_label\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:11:\"footer_text\";i:1;s:11:\"footer_link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(1924,7110,'_wp_page_template','default'),(1925,7110,'custom_header',''),(1926,7110,'header_layout','24'),(1927,7110,'p_h_style1','themeoption'),(1928,7110,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1929,7110,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1930,7110,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1931,7110,'page_h_phone',''),(1932,7110,'page_h_time',''),(1933,7110,'h_custom_menu',''),(1934,7110,'h_custom_menu_left',''),(1935,7110,'h_custom_menu_right',''),(1936,7110,'custom_pagetitle','hide'),(1937,7110,'custom_title',''),(1938,7110,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1939,7110,'p_page_title_color',''),(1940,7110,'ptitle_overlay','themeoption'),(1941,7110,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1942,7110,'ptitle_breadcrumb_page','themeoption'),(1943,7110,'ptitle_breadcrumb_color',''),(1944,7110,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1945,7110,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1946,7110,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";}'),(1947,7110,'show_sidebar_page',''),(1948,7110,'sidebar_page_pos','right'),(1949,7110,'loading_page','themeoption'),(1950,7110,'loading_type','style1'),(1951,7110,'custom_footer',''),(1952,7110,'footer_layout_custom',''),(1953,7110,'page_back_totop','themeoption'),(1954,7110,'slide_template','default'),(1955,7110,'rs_page_bg_color','#ffffff'),(1956,7110,'_elementor_edit_mode','builder'),(1957,7110,'_elementor_template_type','wp-page'),(1958,7110,'_elementor_version','3.1.4'),(1959,7110,'_elementor_data','[{\"id\":\"14986482\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67000000000000003996802888650563545525074005126953125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78672c18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2153f2b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Create your account\",\"btn_label\":\"Already have an account?\",\"btn_text\":\"Log In\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/sign-in\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"user_type\":\"sign-up\"},\"elements\":[],\"widgetType\":\"ct_user\"}],\"isInner\":false}],\"isInner\":false}]'),(1960,7110,'_elementor_controls_usage','a:3:{s:7:\"ct_user\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:5:\"title\";i:1;s:9:\"btn_label\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:9:\"user_type\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(1994,161,'_wp_page_template','default'),(1995,161,'_elementor_controls_usage','a:0:{}'),(1996,161,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1997,161,'show_sidebar_post',''),(1998,161,'sidebar_post_pos','right'),(1999,161,'slide_template','default'),(2000,161,'post_views_count','322'),(2001,161,'video_url',''),(2002,161,'custom_header',''),(2003,161,'header_layout','15'),(2004,161,'custom_pagetitle','themeoption'),(2005,161,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2006,161,'rs_page_bg_color','#ffffff'),(2009,161,'_wp_old_slug','food-industry-leaders-often-change-their-profound'),(2010,161,'_thumbnail_id','4705'),(2011,161,'_wp_old_slug','8-ways-best-practices-for-seo-can-increase'),(2012,161,'external_url',''),(2074,645,'_wp_page_template','default'),(2075,645,'service_icon','flaticonv5-business-presentation'),(2076,645,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2077,645,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2078,645,'slide_template',''),(2079,645,'_elementor_edit_mode','builder'),(2080,645,'_elementor_template_type','wp-post'),(2081,645,'_elementor_version','2.7.5'),(2082,645,'_elementor_data','[{\"id\":\"3a4a7b26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"915447d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"178ed7df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d350375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51b661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"15862e4f\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57b83fdc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4354465f\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2483f9f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd80012\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"eca4320\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a864c63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eb05a19\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6f3b3b88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"258fd3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3ad38e33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3057e303\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e2459bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e81477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"46098650\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2083,645,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2084,645,'_wp_old_slug','general-contracting'),(2085,645,'rs_page_bg_color',''),(2086,645,'_wp_old_slug','chart-management'),(2087,645,'icon_type','icon'),(2088,645,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2089,645,'_wp_old_date','2019-11-13'),(2090,645,'_wp_old_slug','flood-insurance'),(2091,645,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2092,645,'_wp_old_slug','leadership-work__trashed'),(2093,645,'_wp_old_slug','leadership-work'),(2094,645,'custom_pagetitle','themeoption'),(2095,645,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2096,645,'p_page_title_color',''),(2097,645,'ptitle_overlay','themeoption'),(2098,645,'_wp_old_slug','global-insights'),(2099,645,'ptitle_breadcrumb_page','themeoption'),(2100,4931,'_wp_page_template','default'),(2101,4931,'icon_type','icon'),(2102,4931,'service_icon','flaticonv5-screen'),(2103,4931,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2104,4931,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2105,4931,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2106,4931,'custom_pagetitle','themeoption'),(2107,4931,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2108,4931,'p_page_title_color',''),(2109,4931,'ptitle_overlay','themeoption'),(2110,4931,'slide_template',''),(2111,4931,'rs_page_bg_color',''),(2112,4931,'_wp_old_date','2020-06-13'),(2113,4931,'_thumbnail_id','1539'),(2114,4931,'_elementor_edit_mode','builder'),(2115,4931,'_elementor_template_type','wp-post'),(2116,4931,'_elementor_version','2.9.13'),(2117,4931,'_elementor_data','[{\"id\":\"4648e02\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"202334f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cea3c53\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"20497c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51bc2539\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10686d70\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"8ec33ae\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"bf7506a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"65f0b193\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"18e72853\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44c78a7b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"45feaa6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d9bdc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c8d6456\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"37c83b05\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"505317b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1c8930ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1755f097\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1e22b4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36006427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6fe7bab0\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2118,4931,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2119,4931,'ptitle_breadcrumb_page','themeoption'),(2120,91,'_elementor_controls_usage','a:0:{}'),(2121,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>'),(2122,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2123,91,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2124,91,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2125,91,'_additional_settings',''),(2126,91,'_locale','en_US'),(2127,446,'_wp_page_template','default'),(2128,446,'service_except','We develop the relationships that underpin the next phase in your organisation & dreamy design, make a...'),(2129,446,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2130,446,'slide_template',''),(2131,446,'service_icon','flaticonv7-analytics'),(2132,446,'_elementor_edit_mode','builder'),(2133,446,'_elementor_template_type','wp-post'),(2134,446,'_elementor_version','2.7.5'),(2135,446,'_elementor_data','[{\"id\":\"24b96b2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0a26a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"27e9d0b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7fdadd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3401c8e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b2f0a2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5ea1b3fd\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"72341ec9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d71e5a4\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d9823f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"525fdf55\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70fccaab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5038b12b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"692d161\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"9a76b64\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2841df09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"569f6d22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ebe579f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ebe53e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42d3dd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"26346a93\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2136,446,'_thumbnail_id','4716'),(2137,446,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2138,446,'_wp_old_slug','metal-roofing'),(2139,446,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2140,446,'rs_page_bg_color',''),(2141,446,'_wp_old_slug','market-research'),(2142,446,'icon_type','icon'),(2143,446,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2144,446,'_wp_old_date','2019-11-11'),(2145,446,'_wp_old_date','2020-02-11'),(2146,446,'_wp_old_slug','renters-insurance'),(2147,446,'_wp_old_slug','fund-transfer'),(2148,446,'custom_pagetitle','themeoption'),(2149,446,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2150,446,'p_page_title_color',''),(2151,446,'ptitle_overlay','themeoption'),(2152,446,'_wp_old_slug','audit-and-assurance-services'),(2153,446,'_wp_old_slug','awesome-support'),(2154,446,'_wp_old_slug','insurance-service'),(2155,446,'ptitle_breadcrumb_page','themeoption'),(2156,446,'_wp_old_slug','financial-growth'),(2157,446,'_wp_old_slug','local-visa'),(2158,448,'_wp_page_template','default'),(2159,448,'service_except','Consultio is a design studio founded in London. Nowadays, we’ve grown and expanded our services and have...'),(2160,448,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2161,448,'slide_template',''),(2162,448,'service_icon','flaticonv7-consulting'),(2163,448,'_elementor_edit_mode','builder'),(2164,448,'_elementor_template_type','wp-post'),(2165,448,'_elementor_version','2.7.5'),(2166,448,'_elementor_data','[{\"id\":\"1b1cd0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c48a456\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a89488c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"b5349e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f53d85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233b1a0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"c8deb5e\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2fd822c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"d5c9c33\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6fed9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6dae33\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70afa14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"66112fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d15cfd\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"ab598c4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ca16fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1548059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1021f1b\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e0b2e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f7d0b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ad765c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2167,448,'_thumbnail_id','4715'),(2168,448,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2169,448,'_wp_old_slug','interior-design'),(2170,448,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2171,448,'rs_page_bg_color',''),(2172,448,'_wp_old_slug','seo-optimization'),(2173,448,'icon_type','icon'),(2174,448,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2175,448,'_wp_old_date','2019-11-11'),(2176,448,'_wp_old_date','2020-02-11'),(2177,448,'_wp_old_slug','business-insurance'),(2178,448,'custom_pagetitle','themeoption'),(2179,448,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2180,448,'p_page_title_color',''),(2181,448,'ptitle_overlay','themeoption'),(2182,448,'_wp_old_slug','tax-and-consultancy-services'),(2183,448,'_wp_old_slug','business-planner'),(2184,448,'_wp_old_slug','website-designing'),(2185,448,'ptitle_breadcrumb_page','themeoption'),(2186,448,'_wp_old_slug','financial-limit'),(2187,448,'_wp_old_slug','immigrant-visas'),(2188,448,'_wp_old_slug','social-media-marketing'),(2189,647,'_wp_page_template','default'),(2190,647,'service_icon','flaticonv5-affiliate-marketing'),(2191,647,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2192,647,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2193,647,'slide_template',''),(2194,647,'_elementor_edit_mode','builder'),(2195,647,'_elementor_template_type','wp-post'),(2196,647,'_elementor_version','2.7.5'),(2197,647,'_elementor_data','[{\"id\":\"6a53a81c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36346e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bc7d745\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"46d7f391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48fe5cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b982cce\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4e071452\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2504dd8d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"48fcf97\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"4e1963b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7409dc3d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5f1a36b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"156390c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59243e36\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5ecb93f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6299f06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b9da903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f548340\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eca01ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"304ec3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"976bc52\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2198,647,'_thumbnail_id','1534'),(2199,647,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2200,647,'_wp_old_slug','house-renovation'),(2201,647,'icon_type','icon'),(2202,647,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2203,647,'rs_page_bg_color',''),(2204,647,'_wp_old_slug','strategy'),(2205,647,'_wp_old_date','2019-11-13'),(2206,647,'_wp_old_slug','marriage-insurance'),(2207,647,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2208,647,'_wp_old_slug','legal-analytics__trashed'),(2209,647,'_wp_old_slug','legal-analytics'),(2210,647,'custom_pagetitle','themeoption'),(2211,647,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2212,647,'p_page_title_color',''),(2213,647,'ptitle_overlay','themeoption'),(2214,647,'_wp_old_slug','business-strategy'),(2215,647,'ptitle_breadcrumb_page','themeoption'),(2216,649,'_wp_page_template','default'),(2217,649,'service_icon','flaticon-report'),(2218,649,'service_except','At its core, every brand has something special to reveal something that inspires people. We are an agency...'),(2219,649,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2220,649,'slide_template',''),(2221,649,'_elementor_edit_mode','builder'),(2222,649,'_elementor_template_type','wp-post'),(2223,649,'_elementor_version','2.7.5'),(2224,649,'_elementor_data','[{\"id\":\"1e878f39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a9c35f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b4f9955\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3abf5173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a431e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16e925ac\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"f8300\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1a3bf5d0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"28c9244d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"1376fcea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17c783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"576eff3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"607fd0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d590152\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"fcae319\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5d59bf2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"230322a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74358e14\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"367d11a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a37ca53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1d9841\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2225,649,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2226,649,'_wp_old_slug','laminate-flooring'),(2227,649,'_thumbnail_id','1539'),(2228,649,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2229,649,'icon_type','icon'),(2230,649,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2231,649,'rs_page_bg_color',''),(2232,649,'_wp_old_slug','program-management'),(2233,649,'_wp_old_date','2019-11-13'),(2234,649,'_wp_old_slug','life-insurance'),(2235,649,'custom_pagetitle','themeoption'),(2236,649,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2237,649,'p_page_title_color',''),(2238,649,'ptitle_overlay','themeoption'),(2239,649,'_wp_old_slug','legal-assessment'),(2240,649,'_wp_old_slug','legal-assessment-and-hr-management'),(2241,649,'_wp_old_slug','no-coding-skills'),(2242,649,'ptitle_breadcrumb_page','themeoption'),(2243,649,'_wp_old_slug','automotive-mobility'),(2244,649,'_wp_old_slug','business-visa'),(2245,651,'_wp_page_template','default'),(2246,651,'service_icon','flaticonv5-idea'),(2247,651,'service_except','Rounding up a bunch of specific designs & talking about the merits of each is perfect way to find common ground...'),(2248,651,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2249,651,'slide_template',''),(2250,651,'_elementor_edit_mode','builder'),(2251,651,'_elementor_template_type','wp-post'),(2252,651,'_elementor_version','2.7.5'),(2253,651,'_elementor_data','[{\"id\":\"4881fb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"60f5cf44\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5236cc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5bf474db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21ca04a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118ec289\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3e340a56\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"9a22fc5\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"5a3ebb17\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"68320a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415a7443\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5e6d0038\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"64eeb67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42ea80fc\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"52d8de1c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"233d4206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3651e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71cdb235\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a78cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a925c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"526a9100\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2254,651,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2255,651,'_wp_old_slug','surface-demolition'),(2256,651,'_thumbnail_id','1556'),(2257,651,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2258,651,'icon_type','icon'),(2259,651,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2260,651,'rs_page_bg_color',''),(2261,651,'_wp_old_slug','business-planning'),(2262,651,'_wp_old_date','2019-11-13'),(2263,651,'_wp_old_slug','health-insurance'),(2264,651,'custom_pagetitle','themeoption'),(2265,651,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2266,651,'p_page_title_color',''),(2267,651,'ptitle_overlay','themeoption'),(2268,651,'_wp_old_slug','seo-optimization'),(2269,651,'_wp_old_slug','lifetime-updates'),(2270,651,'ptitle_breadcrumb_page','themeoption'),(2271,651,'_wp_old_slug','private-equity'),(2272,651,'_wp_old_slug','tourist-visa'),(2273,1615,'_elementor_controls_usage','a:0:{}'),(2274,1615,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(2275,1615,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2276,1615,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2277,1615,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2278,1615,'_additional_settings',''),(2279,1615,'_locale','en_US'),(2280,2625,'_wp_page_template','default'),(2281,2625,'service_icon','flaticon-internet'),(2282,2625,'service_except','Increase social reach and productivity with our App Directory, a collection of famous applications like...'),(2283,2625,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2284,2625,'slide_template',''),(2285,2625,'_wp_old_date','2019-12-15'),(2286,2625,'_elementor_edit_mode','builder'),(2287,2625,'_elementor_template_type','wp-post'),(2288,2625,'_elementor_version','2.8.2'),(2289,2625,'_elementor_data','[{\"id\":\"f71bbd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77476d13\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65f4c82a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"40e943bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e9b79e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69ebafa0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"294cdfea\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6663b56\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"12dbcad8\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"bb7c850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15cbe3c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"8d917c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30043fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f4ca975\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a4f2513\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324ad909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"622a7bb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"537521e4\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34a6953a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3161829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f924728\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2290,2625,'icon_type','icon'),(2291,2625,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2292,2625,'rs_page_bg_color',''),(2293,2625,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2294,2625,'_wp_old_slug','setup-and-training__trashed'),(2295,2625,'_wp_old_slug','setup-and-training'),(2296,2625,'_wp_old_date','2019-12-04'),(2297,2625,'_wp_old_date','2020-02-04'),(2298,2625,'_wp_old_slug','home-insurance'),(2299,2625,'_thumbnail_id','1534'),(2300,2625,'_wp_old_slug','market-research'),(2301,2625,'custom_pagetitle','themeoption'),(2302,2625,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2303,2625,'p_page_title_color',''),(2304,2625,'ptitle_overlay','themeoption'),(2305,2625,'_wp_old_slug','market-research-and-advertising'),(2306,2625,'_wp_old_slug','extensive-docs'),(2307,2625,'_wp_old_slug','business-planning'),(2308,2625,'ptitle_breadcrumb_page','themeoption'),(2309,2625,'_wp_old_slug','customer-experience'),(2310,2625,'_wp_old_slug','student-visa'),(2311,2627,'_wp_page_template','default'),(2312,2627,'service_icon','flaticonv7-idea'),(2313,2627,'service_except','What separates mori from all other web design agencies is ability to offer the most Friendly Experience you can...'),(2314,2627,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2315,2627,'slide_template',''),(2316,2627,'_wp_old_date','2019-12-15'),(2317,2627,'_elementor_edit_mode','builder'),(2318,2627,'_elementor_template_type','wp-post'),(2319,2627,'_elementor_version','2.9.6'),(2320,2627,'_elementor_data','[{\"id\":\"35d636a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"397d9651\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e91ae1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4dc16a8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"365b03bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44c0289d\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"79479e0d\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2375eb14\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"37af1b7c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"79ab90e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773c0bb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"46b12884\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1040e061\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147e59da\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"445c6273\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e58457c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"77e2a5fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bfe3ad7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ff9f718\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4aee66fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"19e73df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2321,2627,'icon_type','icon'),(2322,2627,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2323,2627,'rs_page_bg_color',''),(2324,2627,'_wp_old_slug','legal-assessment__trashed'),(2325,2627,'_wp_old_slug','legal-assessment'),(2326,2627,'_thumbnail_id','4705'),(2327,2627,'_wp_old_date','2019-12-04'),(2328,2627,'_wp_old_date','2020-02-04'),(2329,2627,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2330,2627,'_wp_old_slug','car-insurance'),(2331,2627,'_wp_old_slug','business-planning'),(2332,2627,'custom_pagetitle','themeoption'),(2333,2627,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2334,2627,'p_page_title_color',''),(2335,2627,'ptitle_overlay','themeoption'),(2336,2627,'_wp_old_slug','life-health-insurance-consulting'),(2337,2627,'_wp_old_slug','global-connection'),(2338,2627,'ptitle_breadcrumb_page','themeoption'),(2339,2627,'_wp_old_slug','tax-management'),(2340,2627,'_wp_old_slug','medical-visa'),(2341,3823,'_elementor_controls_usage','a:0:{}'),(2342,3823,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>'),(2343,3823,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2344,3823,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2345,3823,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2346,3823,'_additional_settings',''),(2347,3823,'_locale','en_US'),(2348,3851,'_elementor_controls_usage','a:0:{}'),(2349,3851,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2350,3851,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:290:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2351,3851,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:290:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2352,3851,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2353,3851,'_additional_settings',''),(2354,3851,'_locale','en_US'),(2355,4171,'_wp_page_template','default'),(2356,4171,'icon_type','icon'),(2357,4171,'service_icon','flaticon-stats'),(2358,4171,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2359,4171,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2360,4171,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2361,4171,'slide_template',''),(2362,4171,'rs_page_bg_color',''),(2363,4171,'_wp_old_date','2020-01-21'),(2364,4171,'_elementor_edit_mode','builder'),(2365,4171,'_elementor_template_type','wp-post'),(2366,4171,'_elementor_version','2.9.6'),(2367,4171,'_elementor_data','[{\"id\":\"6c67734\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"44ffb367\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65760aff\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4c49accc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38ac0e77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3403ca95\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5b6def17\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"7a542963\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"64356383\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"43162871\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58b58dfc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3bfd56b7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6f0e2371\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ccd9bf\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"505dcc04\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72318916\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49fae915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41bf0205\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"724df9e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d1ccc31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c8d5802\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2368,4171,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2369,4174,'_wp_page_template','default'),(2370,4174,'icon_type','icon'),(2371,4174,'service_icon','flaticon-chart'),(2372,4174,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2373,4174,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2374,4174,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2375,4174,'slide_template',''),(2376,4174,'rs_page_bg_color',''),(2377,4174,'_elementor_edit_mode','builder'),(2378,4174,'_elementor_template_type','wp-post'),(2379,4174,'_elementor_version','2.9.6'),(2380,4174,'_elementor_data','[{\"id\":\"4768c103\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7750b682\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ef8fb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"24df3c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7287157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"381bdecc\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"283f37f7\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"189ea31\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"6640a592\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d2db62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103ed49d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"1fb4aeb0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"310525f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"35cda179\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"485e1348\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"550c04b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1570951c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"756e5eb9\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40af6df3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5de5804e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7033d293\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2381,4174,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2382,4177,'_wp_page_template','default'),(2383,4177,'icon_type','icon'),(2384,4177,'service_icon','flaticon-leadership'),(2385,4177,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2386,4177,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2387,4177,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2388,4177,'slide_template',''),(2389,4177,'rs_page_bg_color',''),(2390,4177,'_elementor_edit_mode','builder'),(2391,4177,'_elementor_template_type','wp-post'),(2392,4177,'_elementor_version','2.9.6');
INSERT INTO `wp_postmeta` VALUES (2393,4177,'_elementor_data','[{\"id\":\"708ce3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a5bbf70\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6c4ae781\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"21e354b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1432ade\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cfd4902\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"31efdd58\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57fa577d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d353789\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":3,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"f4be680\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d515d76\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"413a3416\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d6776f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7c4d2e83\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6de25836\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"28074dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"79d8da8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3f0cd7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"548f6a1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77964138\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"475c150\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2394,4177,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2395,4177,'_wp_old_slug','business-strategy'),(2417,5003,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	\n	<div class=\"input-filled col-lg-12 col-md-12\">[select* your-service \"Services\" \"NursingJobsUK\" \"Study Abroad\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block hover-white\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2418,5003,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"Ealoor Consultancy \"[your-service]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [first-name] [last-name]  <[your-email]>\nPhone: [your-phone]\nService: [your-service] \nMessage : [your-message]\n\n-- \nThis e-mail was sent from a contact form on Ealoor Consultancy\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2419,5003,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2420,5003,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2421,5003,'_additional_settings',''),(2422,5003,'_locale','en_US'),(2423,5005,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Phone number...\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[select* your-service \"Choose services*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-paper-plane space-right\"></i>Get a Quote</button></div>\n</div>'),(2424,5005,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2425,5005,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2426,5005,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2427,5005,'_additional_settings',''),(2428,5005,'_locale','en_US'),(2429,6068,'_form','<div class=\"row\">\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-user\"></i>Name:</label>[text* your-name placeholder \"Jhon Doe\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-phone\"></i>Phone:</label>[text* your-phone placeholder \"+88213567945\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-envelope\"></i>Email:</label>[email* your-email placeholder \"sample@mail.com\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-toolbox\"></i>Service:</label>[select* your-service \"Service\" \"Business Consulting\" \"Startup Business\" \"Leadership Work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn rev-btn-animate1\">Get a Free Consultation<i class=\"flaticonv2 flaticonv2-right-arrow\"></i></button></div>\n	<div class=\"input-filled col-12 form-footer\">Your personal information will be hidden</div>\n</div>'),(2430,6068,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <casethemes.net@gmail.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:154:\"From: [your-name] <[your-email]>\nService: [your-service]\nPhone: [your-phone]\n\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2431,6068,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:120:\"Service: [your-service]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2432,6068,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2433,6068,'_additional_settings',''),(2434,6068,'_locale','en_US'),(2435,8043,'_menu_item_type','post_type'),(2436,8043,'_menu_item_menu_item_parent','0'),(2437,8043,'_menu_item_object_id','9'),(2438,8043,'_menu_item_object','page'),(2439,8043,'_menu_item_target',''),(2440,8043,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2441,8043,'_menu_item_xfn',''),(2442,8043,'_menu_item_url',''),(2443,8043,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2444,8043,'_menu_item_ct_icon',''),(2445,8044,'_menu_item_type','post_type'),(2446,8044,'_menu_item_menu_item_parent','0'),(2447,8044,'_menu_item_object_id','26'),(2448,8044,'_menu_item_object','page'),(2449,8044,'_menu_item_target',''),(2450,8044,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2451,8044,'_menu_item_xfn',''),(2452,8044,'_menu_item_url',''),(2453,8044,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2454,8044,'_menu_item_ct_icon',''),(2465,8046,'_menu_item_type','post_type'),(2466,8046,'_menu_item_menu_item_parent','0'),(2467,8046,'_menu_item_object_id','407'),(2468,8046,'_menu_item_object','page'),(2469,8046,'_menu_item_target',''),(2470,8046,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2471,8046,'_menu_item_xfn',''),(2472,8046,'_menu_item_url',''),(2473,8046,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2474,8046,'_menu_item_ct_icon',''),(2475,8047,'_menu_item_type','post_type'),(2476,8047,'_menu_item_menu_item_parent','0'),(2477,8047,'_menu_item_object_id','129'),(2478,8047,'_menu_item_object','page'),(2479,8047,'_menu_item_target',''),(2480,8047,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2481,8047,'_menu_item_xfn',''),(2482,8047,'_menu_item_url',''),(2483,8047,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2484,8047,'_menu_item_ct_icon',''),(2485,8048,'_menu_item_type','post_type'),(2486,8048,'_menu_item_menu_item_parent','0'),(2487,8048,'_menu_item_object_id','415'),(2488,8048,'_menu_item_object','page'),(2489,8048,'_menu_item_target',''),(2490,8048,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2491,8048,'_menu_item_xfn',''),(2492,8048,'_menu_item_url',''),(2493,8048,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2494,8048,'_menu_item_ct_icon',''),(2495,8049,'_menu_item_type','post_type'),(2496,8049,'_menu_item_menu_item_parent','0'),(2497,8049,'_menu_item_object_id','651'),(2498,8049,'_menu_item_object','service'),(2499,8049,'_menu_item_target',''),(2500,8049,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2501,8049,'_menu_item_xfn',''),(2502,8049,'_menu_item_url',''),(2503,8049,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2504,8049,'_menu_item_ct_icon',''),(2505,8050,'_menu_item_type','post_type'),(2506,8050,'_menu_item_menu_item_parent','0'),(2507,8050,'_menu_item_object_id','649'),(2508,8050,'_menu_item_object','service'),(2509,8050,'_menu_item_target',''),(2510,8050,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2511,8050,'_menu_item_xfn',''),(2512,8050,'_menu_item_url',''),(2513,8050,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2514,8050,'_menu_item_ct_icon',''),(2515,8051,'_menu_item_type','post_type'),(2516,8051,'_menu_item_menu_item_parent','0'),(2517,8051,'_menu_item_object_id','645'),(2518,8051,'_menu_item_object','service'),(2519,8051,'_menu_item_target',''),(2520,8051,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2521,8051,'_menu_item_xfn',''),(2522,8051,'_menu_item_url',''),(2523,8051,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2524,8051,'_menu_item_ct_icon',''),(2525,8052,'_menu_item_type','post_type'),(2526,8052,'_menu_item_menu_item_parent','0'),(2527,8052,'_menu_item_object_id','448'),(2528,8052,'_menu_item_object','service'),(2529,8052,'_menu_item_target',''),(2530,8052,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2531,8052,'_menu_item_xfn',''),(2532,8052,'_menu_item_url',''),(2533,8052,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2534,8052,'_menu_item_ct_icon',''),(2535,8053,'_menu_item_type','post_type'),(2536,8053,'_menu_item_menu_item_parent','0'),(2537,8053,'_menu_item_object_id','446'),(2538,8053,'_menu_item_object','service'),(2539,8053,'_menu_item_target',''),(2540,8053,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2541,8053,'_menu_item_xfn',''),(2542,8053,'_menu_item_url',''),(2543,8053,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2544,8053,'_menu_item_ct_icon',''),(2545,8054,'_menu_item_type','post_type'),(2546,8054,'_menu_item_menu_item_parent','0'),(2547,8054,'_menu_item_object_id','132'),(2548,8054,'_menu_item_object','page'),(2549,8054,'_menu_item_target',''),(2550,8054,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2551,8054,'_menu_item_xfn',''),(2552,8054,'_menu_item_url',''),(2553,8054,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2554,8054,'_menu_item_ct_icon',''),(2555,8055,'_menu_item_type','post_type'),(2556,8055,'_menu_item_menu_item_parent','8054'),(2557,8055,'_menu_item_object_id','132'),(2558,8055,'_menu_item_object','page'),(2559,8055,'_menu_item_target',''),(2560,8055,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2561,8055,'_menu_item_xfn',''),(2562,8055,'_menu_item_url',''),(2563,8055,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2564,8055,'_menu_item_ct_icon',''),(2565,8056,'_menu_item_type','post_type'),(2566,8056,'_menu_item_menu_item_parent','8054'),(2567,8056,'_menu_item_object_id','123'),(2568,8056,'_menu_item_object','page'),(2569,8056,'_menu_item_target',''),(2570,8056,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2571,8056,'_menu_item_xfn',''),(2572,8056,'_menu_item_url',''),(2573,8056,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2574,8056,'_menu_item_ct_icon',''),(2575,8057,'_menu_item_type','post_type'),(2576,8057,'_menu_item_menu_item_parent','8059'),(2577,8057,'_menu_item_object_id','125'),(2578,8057,'_menu_item_object','page'),(2579,8057,'_menu_item_target',''),(2580,8057,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2581,8057,'_menu_item_xfn',''),(2582,8057,'_menu_item_url',''),(2583,8057,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2584,8057,'_menu_item_ct_icon',''),(2585,8058,'_menu_item_type','post_type'),(2586,8058,'_menu_item_menu_item_parent','8059'),(2587,8058,'_menu_item_object_id','127'),(2588,8058,'_menu_item_object','page'),(2589,8058,'_menu_item_target',''),(2590,8058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2591,8058,'_menu_item_xfn',''),(2592,8058,'_menu_item_url',''),(2593,8058,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2594,8058,'_menu_item_ct_icon',''),(2595,8059,'_menu_item_type','post_type'),(2596,8059,'_menu_item_menu_item_parent','8054'),(2597,8059,'_menu_item_object_id','129'),(2598,8059,'_menu_item_object','page'),(2599,8059,'_menu_item_target',''),(2600,8059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2601,8059,'_menu_item_xfn',''),(2602,8059,'_menu_item_url',''),(2603,8059,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2604,8059,'_menu_item_ct_icon',''),(2605,8060,'_menu_item_type','post_type'),(2606,8060,'_menu_item_menu_item_parent','8055'),(2607,8060,'_menu_item_object_id','134'),(2608,8060,'_menu_item_object','page'),(2609,8060,'_menu_item_target',''),(2610,8060,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2611,8060,'_menu_item_xfn',''),(2612,8060,'_menu_item_url',''),(2613,8060,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2614,8060,'_menu_item_ct_icon',''),(2615,8061,'_menu_item_type','post_type'),(2616,8061,'_menu_item_menu_item_parent','8055'),(2617,8061,'_menu_item_object_id','136'),(2618,8061,'_menu_item_object','page'),(2619,8061,'_menu_item_target',''),(2620,8061,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2621,8061,'_menu_item_xfn',''),(2622,8061,'_menu_item_url',''),(2623,8061,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2624,8061,'_menu_item_ct_icon',''),(2625,8062,'_menu_item_type','post_type'),(2626,8062,'_menu_item_menu_item_parent','8055'),(2627,8062,'_menu_item_object_id','132'),(2628,8062,'_menu_item_object','page'),(2629,8062,'_menu_item_target',''),(2630,8062,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2631,8062,'_menu_item_xfn',''),(2632,8062,'_menu_item_url',''),(2633,8062,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2634,8062,'_menu_item_ct_icon',''),(2635,8063,'_menu_item_type','post_type'),(2636,8063,'_menu_item_menu_item_parent','8059'),(2637,8063,'_menu_item_object_id','129'),(2638,8063,'_menu_item_object','page'),(2639,8063,'_menu_item_target',''),(2640,8063,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2641,8063,'_menu_item_xfn',''),(2642,8063,'_menu_item_url',''),(2643,8063,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2644,8063,'_menu_item_ct_icon',''),(2645,8064,'_menu_item_type','post_type'),(2646,8064,'_menu_item_menu_item_parent','8054'),(2647,8064,'_menu_item_object_id','161'),(2648,8064,'_menu_item_object','post'),(2649,8064,'_menu_item_target',''),(2650,8064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2651,8064,'_menu_item_xfn',''),(2652,8064,'_menu_item_url',''),(2653,8064,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2654,8064,'_menu_item_ct_icon',''),(2655,8065,'_menu_item_type','post_type'),(2656,8065,'_menu_item_menu_item_parent','8064'),(2657,8065,'_menu_item_object_id','161'),(2658,8065,'_menu_item_object','post'),(2659,8065,'_menu_item_target',''),(2660,8065,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2661,8065,'_menu_item_xfn',''),(2662,8065,'_menu_item_url',''),(2663,8065,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2664,8065,'_menu_item_ct_icon',''),(2725,8072,'_menu_item_type','post_type'),(2726,8072,'_menu_item_menu_item_parent','8068'),(2727,8072,'_menu_item_object_id','3514'),(2728,8072,'_menu_item_object','page'),(2729,8072,'_menu_item_target',''),(2730,8072,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2731,8072,'_menu_item_xfn',''),(2732,8072,'_menu_item_url',''),(2733,8072,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2734,8072,'_menu_item_ct_icon',''),(2735,8073,'_menu_item_type','post_type'),(2736,8073,'_menu_item_menu_item_parent','8079'),(2737,8073,'_menu_item_object_id','417'),(2738,8073,'_menu_item_object','page'),(2739,8073,'_menu_item_target',''),(2740,8073,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2741,8073,'_menu_item_xfn',''),(2742,8073,'_menu_item_url',''),(2743,8073,'_menu_item_ct_icon',''),(2744,8074,'_menu_item_type','post_type'),(2745,8074,'_menu_item_menu_item_parent','8080'),(2746,8074,'_menu_item_object_id','4359'),(2747,8074,'_menu_item_object','page'),(2748,8074,'_menu_item_target',''),(2749,8074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2750,8074,'_menu_item_xfn',''),(2751,8074,'_menu_item_url',''),(2752,8074,'_menu_item_ct_icon',''),(2753,8075,'_menu_item_type','post_type'),(2754,8075,'_menu_item_menu_item_parent','8080'),(2755,8075,'_menu_item_object_id','4357'),(2756,8075,'_menu_item_object','page'),(2757,8075,'_menu_item_target',''),(2758,8075,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2759,8075,'_menu_item_xfn',''),(2760,8075,'_menu_item_url',''),(2761,8075,'_menu_item_ct_icon',''),(2762,8076,'_menu_item_type','post_type'),(2763,8076,'_menu_item_menu_item_parent','8080'),(2764,8076,'_menu_item_object_id','4355'),(2765,8076,'_menu_item_object','page'),(2766,8076,'_menu_item_target',''),(2767,8076,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2768,8076,'_menu_item_xfn',''),(2769,8076,'_menu_item_url',''),(2770,8076,'_menu_item_ct_icon',''),(2771,8077,'_menu_item_type','post_type'),(2772,8077,'_menu_item_menu_item_parent','8080'),(2773,8077,'_menu_item_object_id','415'),(2774,8077,'_menu_item_object','page'),(2775,8077,'_menu_item_target',''),(2776,8077,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2777,8077,'_menu_item_xfn',''),(2778,8077,'_menu_item_url',''),(2779,8077,'_menu_item_ct_icon',''),(2780,8078,'_menu_item_type','post_type'),(2781,8078,'_menu_item_menu_item_parent','8079'),(2782,8078,'_menu_item_object_id','1740'),(2783,8078,'_menu_item_object','portfolio'),(2784,8078,'_menu_item_target',''),(2785,8078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2786,8078,'_menu_item_xfn',''),(2787,8078,'_menu_item_url',''),(2788,8078,'_menu_item_ct_icon',''),(2789,8079,'_menu_item_type','post_type'),(2790,8079,'_menu_item_menu_item_parent','0'),(2791,8079,'_menu_item_object_id','415'),(2792,8079,'_menu_item_object','page'),(2793,8079,'_menu_item_target',''),(2794,8079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2795,8079,'_menu_item_xfn',''),(2796,8079,'_menu_item_url',''),(2797,8079,'_menu_item_ct_icon',''),(2798,8080,'_menu_item_type','post_type'),(2799,8080,'_menu_item_menu_item_parent','8079'),(2800,8080,'_menu_item_object_id','415'),(2801,8080,'_menu_item_object','page'),(2802,8080,'_menu_item_target',''),(2803,8080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2804,8080,'_menu_item_xfn',''),(2805,8080,'_menu_item_url',''),(2806,8080,'_menu_item_ct_icon',''),(2807,8081,'_menu_item_type','post_type'),(2808,8081,'_menu_item_menu_item_parent','0'),(2809,8081,'_menu_item_object_id','407'),(2810,8081,'_menu_item_object','page'),(2811,8081,'_menu_item_target',''),(2812,8081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2813,8081,'_menu_item_xfn',''),(2814,8081,'_menu_item_url',''),(2815,8081,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2816,8081,'_menu_item_ct_icon',''),(2817,8081,'_menu_item_ct_megaprofile','0'),(2818,8081,'_menu_item_ct_onepage','no-one-page'),(2819,8081,'_menu_item_ct_onepage_offset',''),(2820,8081,'_wp_old_date','2020-01-30'),(2821,8082,'_menu_item_type','post_type'),(2822,8082,'_menu_item_menu_item_parent','8022'),(2823,8082,'_menu_item_object_id','26'),(2824,8082,'_menu_item_object','page'),(2825,8082,'_menu_item_target',''),(2826,8082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2827,8082,'_menu_item_xfn',''),(2828,8082,'_menu_item_url',''),(2829,8082,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2830,8082,'_menu_item_ct_icon',''),(2831,8082,'_wp_old_date','2020-01-30'),(2832,8083,'_menu_item_type','post_type'),(2833,8083,'_menu_item_menu_item_parent','8022'),(2834,8083,'_menu_item_object_id','30'),(2835,8083,'_menu_item_object','page'),(2836,8083,'_menu_item_target',''),(2837,8083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2838,8083,'_menu_item_xfn',''),(2839,8083,'_menu_item_url',''),(2840,8083,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2841,8083,'_menu_item_ct_icon',''),(2842,8083,'_wp_old_date','2020-01-30'),(2843,8084,'_menu_item_type','post_type'),(2844,8084,'_menu_item_menu_item_parent','8022'),(2845,8084,'_menu_item_object_id','32'),(2846,8084,'_menu_item_object','page'),(2847,8084,'_menu_item_target',''),(2848,8084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2849,8084,'_menu_item_xfn',''),(2850,8084,'_menu_item_url',''),(2851,8084,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2852,8084,'_menu_item_ct_icon',''),(2853,8084,'_wp_old_date','2020-01-30'),(2854,8085,'_menu_item_type','post_type'),(2855,8085,'_menu_item_menu_item_parent','8022'),(2856,8085,'_menu_item_object_id','28'),(2857,8085,'_menu_item_object','page'),(2858,8085,'_menu_item_target',''),(2859,8085,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2860,8085,'_menu_item_xfn',''),(2861,8085,'_menu_item_url',''),(2862,8085,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2863,8085,'_menu_item_ct_icon',''),(2864,8085,'_wp_old_date','2020-01-30'),(2865,8086,'_menu_item_type','post_type'),(2866,8086,'_menu_item_menu_item_parent','8022'),(2867,8086,'_menu_item_object_id','362'),(2868,8086,'_menu_item_object','page'),(2869,8086,'_menu_item_target',''),(2870,8086,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2871,8086,'_menu_item_xfn',''),(2872,8086,'_menu_item_url',''),(2873,8086,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2874,8086,'_menu_item_ct_icon',''),(2875,8086,'_wp_old_date','2020-01-30'),(2876,8087,'_menu_item_type','post_type'),(2877,8087,'_menu_item_menu_item_parent','8022'),(2878,8087,'_menu_item_object_id','367'),(2879,8087,'_menu_item_object','page'),(2880,8087,'_menu_item_target',''),(2881,8087,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2882,8087,'_menu_item_xfn',''),(2883,8087,'_menu_item_url',''),(2884,8087,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2885,8087,'_menu_item_ct_icon',''),(2886,8087,'_wp_old_date','2020-01-30'),(2887,8088,'_menu_item_type','post_type'),(2888,8088,'_menu_item_menu_item_parent','8022'),(2889,8088,'_menu_item_object_id','1972'),(2890,8088,'_menu_item_object','page'),(2891,8088,'_menu_item_target',''),(2892,8088,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2893,8088,'_menu_item_xfn',''),(2894,8088,'_menu_item_url',''),(2895,8088,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2896,8088,'_menu_item_ct_icon',''),(2897,8088,'_wp_old_date','2020-01-30'),(2898,8089,'_menu_item_type','post_type'),(2899,8089,'_menu_item_menu_item_parent','8085'),(2900,8089,'_menu_item_object_id','3520'),(2901,8089,'_menu_item_object','page'),(2902,8089,'_menu_item_target',''),(2903,8089,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2904,8089,'_menu_item_xfn',''),(2905,8089,'_menu_item_url',''),(2906,8089,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2907,8089,'_menu_item_ct_icon',''),(2908,8089,'_wp_old_date','2020-02-07'),(2921,8091,'_menu_item_type','post_type'),(2922,8091,'_menu_item_menu_item_parent','8085'),(2923,8091,'_menu_item_object_id','3518'),(2924,8091,'_menu_item_object','page'),(2925,8091,'_menu_item_target',''),(2926,8091,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2927,8091,'_menu_item_xfn',''),(2928,8091,'_menu_item_url',''),(2929,8091,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2930,8091,'_menu_item_ct_icon',''),(2931,8091,'_wp_old_date','2020-02-07'),(2932,8092,'_menu_item_type','post_type'),(2933,8092,'_menu_item_menu_item_parent','8085'),(2934,8092,'_menu_item_object_id','3516'),(2935,8092,'_menu_item_object','page'),(2936,8092,'_menu_item_target',''),(2937,8092,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2938,8092,'_menu_item_xfn',''),(2939,8092,'_menu_item_url',''),(2940,8092,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2941,8092,'_menu_item_ct_icon',''),(2942,8092,'_wp_old_date','2020-02-07'),(2943,8093,'_menu_item_type','post_type'),(2944,8093,'_menu_item_menu_item_parent','8084'),(2945,8093,'_menu_item_object_id','3504'),(2946,8093,'_menu_item_object','page'),(2947,8093,'_menu_item_target',''),(2948,8093,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2949,8093,'_menu_item_xfn',''),(2950,8093,'_menu_item_url',''),(2951,8093,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2952,8093,'_menu_item_ct_icon',''),(2953,8093,'_wp_old_date','2020-02-07'),(2954,8094,'_menu_item_type','post_type'),(2955,8094,'_menu_item_menu_item_parent','8087'),(2956,8094,'_menu_item_object_id','3502'),(2957,8094,'_menu_item_object','page'),(2958,8094,'_menu_item_target',''),(2959,8094,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2960,8094,'_menu_item_xfn',''),(2961,8094,'_menu_item_url',''),(2962,8094,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2963,8094,'_menu_item_ct_icon',''),(2964,8094,'_wp_old_date','2020-02-07'),(2965,8095,'_menu_item_type','post_type'),(2966,8095,'_menu_item_menu_item_parent','8087'),(2967,8095,'_menu_item_object_id','3500'),(2968,8095,'_menu_item_object','page'),(2969,8095,'_menu_item_target',''),(2970,8095,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2971,8095,'_menu_item_xfn',''),(2972,8095,'_menu_item_url',''),(2973,8095,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2974,8095,'_menu_item_ct_icon',''),(2975,8095,'_wp_old_date','2020-02-07'),(2976,8096,'_menu_item_type','post_type'),(2977,8096,'_menu_item_menu_item_parent','8087'),(2978,8096,'_menu_item_object_id','3497'),(2979,8096,'_menu_item_object','page'),(2980,8096,'_menu_item_target',''),(2981,8096,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2982,8096,'_menu_item_xfn',''),(2983,8096,'_menu_item_url',''),(2984,8096,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2985,8096,'_menu_item_ct_icon',''),(2986,8096,'_wp_old_date','2020-02-07'),(3020,8100,'_menu_item_type','post_type'),(3021,8100,'_menu_item_menu_item_parent','8082'),(3022,8100,'_menu_item_object_id','26'),(3023,8100,'_menu_item_object','page'),(3024,8100,'_menu_item_target',''),(3025,8100,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3026,8100,'_menu_item_xfn',''),(3027,8100,'_menu_item_url',''),(3028,8100,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3029,8100,'_menu_item_ct_icon',''),(3030,8100,'_wp_old_date','2020-02-07'),(3031,8101,'_menu_item_type','post_type'),(3032,8101,'_menu_item_menu_item_parent','8084'),(3033,8101,'_menu_item_object_id','32'),(3034,8101,'_menu_item_object','page'),(3035,8101,'_menu_item_target',''),(3036,8101,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3037,8101,'_menu_item_xfn',''),(3038,8101,'_menu_item_url',''),(3039,8101,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3040,8101,'_menu_item_ct_icon',''),(3041,8101,'_wp_old_date','2020-02-07'),(3042,8102,'_menu_item_type','post_type'),(3043,8102,'_menu_item_menu_item_parent','8085'),(3044,8102,'_menu_item_object_id','28'),(3045,8102,'_menu_item_object','page'),(3046,8102,'_menu_item_target',''),(3047,8102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3048,8102,'_menu_item_xfn',''),(3049,8102,'_menu_item_url',''),(3050,8102,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3051,8102,'_menu_item_ct_icon',''),(3052,8102,'_wp_old_date','2020-02-07'),(3053,8103,'_menu_item_type','post_type'),(3054,8103,'_menu_item_menu_item_parent','8087'),(3055,8103,'_menu_item_object_id','367'),(3056,8103,'_menu_item_object','page'),(3057,8103,'_menu_item_target',''),(3058,8103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3059,8103,'_menu_item_xfn',''),(3060,8103,'_menu_item_url',''),(3061,8103,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3062,8103,'_menu_item_ct_icon',''),(3063,8103,'_wp_old_date','2020-02-07'),(3064,8104,'_menu_item_type','post_type'),(3065,8104,'_menu_item_menu_item_parent','8022'),(3066,8104,'_menu_item_object_id','748'),(3067,8104,'_menu_item_object','page'),(3068,8104,'_menu_item_target',''),(3069,8104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3070,8104,'_menu_item_xfn',''),(3071,8104,'_menu_item_url',''),(3072,8104,'_menu_item_ct_icon',''),(3073,8104,'_wp_old_date','2020-04-21'),(3074,8105,'_menu_item_type','post_type'),(3075,8105,'_menu_item_menu_item_parent','8081'),(3076,8105,'_menu_item_object_id','446'),(3077,8105,'_menu_item_object','service'),(3078,8105,'_menu_item_target',''),(3079,8105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3080,8105,'_menu_item_xfn',''),(3081,8105,'_menu_item_url',''),(3082,8105,'_menu_item_ct_icon',''),(3083,8105,'_wp_old_date','2020-04-22'),(3084,8106,'_menu_item_type','post_type'),(3085,8106,'_menu_item_menu_item_parent','8081'),(3086,8106,'_menu_item_object_id','2627'),(3087,8106,'_menu_item_object','service'),(3088,8106,'_menu_item_target',''),(3089,8106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3090,8106,'_menu_item_xfn',''),(3091,8106,'_menu_item_url',''),(3092,8106,'_menu_item_ct_icon',''),(3093,8106,'_wp_old_date','2020-04-22'),(3094,8107,'_menu_item_type','post_type'),(3095,8107,'_menu_item_menu_item_parent','8081'),(3096,8107,'_menu_item_object_id','2625'),(3097,8107,'_menu_item_object','service'),(3098,8107,'_menu_item_target',''),(3099,8107,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3100,8107,'_menu_item_xfn',''),(3101,8107,'_menu_item_url',''),(3102,8107,'_menu_item_ct_icon',''),(3103,8107,'_wp_old_date','2020-04-22'),(3104,8108,'_menu_item_type','post_type'),(3105,8108,'_menu_item_menu_item_parent','8081'),(3106,8108,'_menu_item_object_id','651'),(3107,8108,'_menu_item_object','service'),(3108,8108,'_menu_item_target',''),(3109,8108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3110,8108,'_menu_item_xfn',''),(3111,8108,'_menu_item_url',''),(3112,8108,'_menu_item_ct_icon',''),(3113,8108,'_wp_old_date','2020-04-22'),(3114,8109,'_menu_item_type','post_type'),(3115,8109,'_menu_item_menu_item_parent','8081'),(3116,8109,'_menu_item_object_id','649'),(3117,8109,'_menu_item_object','service'),(3118,8109,'_menu_item_target',''),(3119,8109,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3120,8109,'_menu_item_xfn',''),(3121,8109,'_menu_item_url',''),(3122,8109,'_menu_item_ct_megaprofile','0'),(3123,8109,'_menu_item_ct_icon',''),(3124,8109,'_menu_item_ct_onepage','no-one-page'),(3125,8109,'_menu_item_ct_onepage_offset',''),(3126,8109,'_wp_old_date','2020-08-14'),(3127,8110,'_menu_item_type','post_type'),(3128,8110,'_menu_item_menu_item_parent','8030'),(3129,8110,'_menu_item_object_id','32'),(3130,8110,'_menu_item_object','page'),(3131,8110,'_menu_item_target',''),(3132,8110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3133,8110,'_menu_item_xfn',''),(3134,8110,'_menu_item_url',''),(3135,8110,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3136,8110,'_menu_item_ct_icon',''),(3137,8110,'_wp_old_date','2021-03-29'),(3138,8111,'_menu_item_type','post_type'),(3139,8111,'_menu_item_menu_item_parent','8030'),(3140,8111,'_menu_item_object_id','30'),(3141,8111,'_menu_item_object','page'),(3142,8111,'_menu_item_target',''),(3143,8111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3144,8111,'_menu_item_xfn',''),(3145,8111,'_menu_item_url',''),(3146,8111,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3147,8111,'_menu_item_ct_icon',''),(3148,8111,'_wp_old_date','2021-03-29'),(3149,8112,'_menu_item_type','post_type'),(3150,8112,'_menu_item_menu_item_parent','8030'),(3151,8112,'_menu_item_object_id','28'),(3152,8112,'_menu_item_object','page'),(3153,8112,'_menu_item_target',''),(3154,8112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3155,8112,'_menu_item_xfn',''),(3156,8112,'_menu_item_url',''),(3157,8112,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3158,8112,'_menu_item_ct_icon',''),(3159,8112,'_wp_old_date','2021-03-29'),(3160,8113,'_menu_item_type','post_type'),(3161,8113,'_menu_item_menu_item_parent','8030'),(3162,8113,'_menu_item_object_id','26'),(3163,8113,'_menu_item_object','page'),(3164,8113,'_menu_item_target',''),(3165,8113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3166,8113,'_menu_item_xfn',''),(3167,8113,'_menu_item_url',''),(3168,8113,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3169,8113,'_menu_item_ct_icon',''),(3170,8113,'_wp_old_date','2021-03-29'),(3182,8115,'_menu_item_type','post_type'),(3183,8115,'_menu_item_menu_item_parent','0'),(3184,8115,'_menu_item_object_id','132'),(3185,8115,'_menu_item_object','page'),(3186,8115,'_menu_item_target',''),(3187,8115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3188,8115,'_menu_item_xfn',''),(3189,8115,'_menu_item_url',''),(3190,8115,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3191,8115,'_menu_item_ct_icon',''),(3192,8115,'_menu_item_ct_megaprofile','0'),(3193,8115,'_menu_item_ct_onepage','no-one-page'),(3194,8115,'_menu_item_ct_onepage_offset',''),(3195,8115,'_wp_old_date','2021-03-29'),(3196,8116,'_menu_item_type','post_type'),(3197,8116,'_menu_item_menu_item_parent','8115'),(3198,8116,'_menu_item_object_id','132'),(3199,8116,'_menu_item_object','page'),(3200,8116,'_menu_item_target',''),(3201,8116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3202,8116,'_menu_item_xfn',''),(3203,8116,'_menu_item_url',''),(3204,8116,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3205,8116,'_menu_item_ct_icon',''),(3206,8116,'_wp_old_date','2021-03-29'),(3207,8117,'_menu_item_type','post_type'),(3208,8117,'_menu_item_menu_item_parent','8115'),(3209,8117,'_menu_item_object_id','129'),(3210,8117,'_menu_item_object','page'),(3211,8117,'_menu_item_target',''),(3212,8117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3213,8117,'_menu_item_xfn',''),(3214,8117,'_menu_item_url',''),(3215,8117,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3216,8117,'_menu_item_ct_icon',''),(3217,8117,'_wp_old_date','2021-03-29'),(3218,8118,'_menu_item_type','post_type'),(3219,8118,'_menu_item_menu_item_parent','8115'),(3220,8118,'_menu_item_object_id','123'),(3221,8118,'_menu_item_object','page'),(3222,8118,'_menu_item_target',''),(3223,8118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3224,8118,'_menu_item_xfn',''),(3225,8118,'_menu_item_url',''),(3226,8118,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3227,8118,'_menu_item_ct_icon',''),(3228,8118,'_wp_old_date','2021-03-29'),(3229,8119,'_menu_item_type','post_type'),(3230,8119,'_menu_item_menu_item_parent','8117'),(3231,8119,'_menu_item_object_id','129'),(3232,8119,'_menu_item_object','page'),(3233,8119,'_menu_item_target',''),(3234,8119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3235,8119,'_menu_item_xfn',''),(3236,8119,'_menu_item_url',''),(3237,8119,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3238,8119,'_menu_item_ct_icon',''),(3239,8119,'_wp_old_date','2021-03-29'),(3240,8120,'_menu_item_type','post_type'),(3241,8120,'_menu_item_menu_item_parent','8117'),(3242,8120,'_menu_item_object_id','127'),(3243,8120,'_menu_item_object','page'),(3244,8120,'_menu_item_target',''),(3245,8120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3246,8120,'_menu_item_xfn',''),(3247,8120,'_menu_item_url',''),(3248,8120,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3249,8120,'_menu_item_ct_icon',''),(3250,8120,'_wp_old_date','2021-03-29'),(3251,8121,'_menu_item_type','post_type'),(3252,8121,'_menu_item_menu_item_parent','8117'),(3253,8121,'_menu_item_object_id','125'),(3254,8121,'_menu_item_object','page'),(3255,8121,'_menu_item_target',''),(3256,8121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3257,8121,'_menu_item_xfn',''),(3258,8121,'_menu_item_url',''),(3259,8121,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3260,8121,'_menu_item_ct_icon',''),(3261,8121,'_wp_old_date','2021-03-29'),(3262,8122,'_menu_item_type','post_type'),(3263,8122,'_menu_item_menu_item_parent','8116'),(3264,8122,'_menu_item_object_id','136'),(3265,8122,'_menu_item_object','page'),(3266,8122,'_menu_item_target',''),(3267,8122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3268,8122,'_menu_item_xfn',''),(3269,8122,'_menu_item_url',''),(3270,8122,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3271,8122,'_menu_item_ct_icon',''),(3272,8122,'_wp_old_date','2021-03-29'),(3273,8123,'_menu_item_type','post_type'),(3274,8123,'_menu_item_menu_item_parent','8116'),(3275,8123,'_menu_item_object_id','134'),(3276,8123,'_menu_item_object','page'),(3277,8123,'_menu_item_target',''),(3278,8123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3279,8123,'_menu_item_xfn',''),(3280,8123,'_menu_item_url',''),(3281,8123,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3282,8123,'_menu_item_ct_icon',''),(3283,8123,'_wp_old_date','2021-03-29'),(3284,8124,'_menu_item_type','post_type'),(3285,8124,'_menu_item_menu_item_parent','8116'),(3286,8124,'_menu_item_object_id','132'),(3287,8124,'_menu_item_object','page'),(3288,8124,'_menu_item_target',''),(3289,8124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3290,8124,'_menu_item_xfn',''),(3291,8124,'_menu_item_url',''),(3292,8124,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3293,8124,'_menu_item_ct_icon',''),(3294,8124,'_wp_old_date','2021-03-29'),(3295,8125,'_menu_item_type','post_type'),(3296,8125,'_menu_item_menu_item_parent','8022'),(3297,8125,'_menu_item_object_id','407'),(3298,8125,'_menu_item_object','page'),(3299,8125,'_menu_item_target',''),(3300,8125,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3301,8125,'_menu_item_xfn',''),(3302,8125,'_menu_item_url',''),(3303,8125,'_menu_item_ct_megaprofile','0'),(3304,8125,'_menu_item_ct_icon',''),(3305,8125,'_menu_item_ct_onepage','no-one-page'),(3306,8125,'_menu_item_ct_onepage_offset',''),(3307,8125,'_wp_old_date','2020-08-14'),(3308,8126,'_menu_item_type','post_type'),(3309,8126,'_menu_item_menu_item_parent','8031'),(3310,8126,'_menu_item_object_id','7110'),(3311,8126,'_menu_item_object','page'),(3312,8126,'_menu_item_target',''),(3313,8126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3314,8126,'_menu_item_xfn',''),(3315,8126,'_menu_item_url',''),(3316,8126,'_menu_item_ct_megaprofile','0'),(3317,8126,'_menu_item_ct_icon',''),(3318,8126,'_menu_item_ct_onepage','no-one-page'),(3319,8126,'_menu_item_ct_onepage_offset',''),(3320,8127,'_menu_item_type','post_type'),(3321,8127,'_menu_item_menu_item_parent','8031'),(3322,8127,'_menu_item_object_id','7107'),(3323,8127,'_menu_item_object','page'),(3324,8127,'_menu_item_target',''),(3325,8127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3326,8127,'_menu_item_xfn',''),(3327,8127,'_menu_item_url',''),(3328,8127,'_menu_item_ct_megaprofile','0'),(3329,8127,'_menu_item_ct_icon',''),(3330,8127,'_menu_item_ct_onepage','no-one-page'),(3331,8127,'_menu_item_ct_onepage_offset',''),(3332,8128,'_menu_item_type','post_type'),(3333,8128,'_menu_item_menu_item_parent','8115'),(3334,8128,'_menu_item_object_id','161'),(3335,8128,'_menu_item_object','post'),(3336,8128,'_menu_item_target',''),(3337,8128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3338,8128,'_menu_item_xfn',''),(3339,8128,'_menu_item_url',''),(3340,8128,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3341,8128,'_menu_item_ct_icon',''),(3342,8128,'_wp_old_date','2021-03-29'),(3343,8129,'_menu_item_type','post_type'),(3344,8129,'_menu_item_menu_item_parent','8128'),(3345,8129,'_menu_item_object_id','161'),(3346,8129,'_menu_item_object','post'),(3347,8129,'_menu_item_target',''),(3348,8129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3349,8129,'_menu_item_xfn',''),(3350,8129,'_menu_item_url',''),(3351,8129,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3352,8129,'_menu_item_ct_icon',''),(3353,8129,'_wp_old_date','2021-03-29'),(3376,8132,'_menu_item_type','post_type'),(3377,8132,'_menu_item_menu_item_parent','8030'),(3378,8132,'_menu_item_object_id','362'),(3379,8132,'_menu_item_object','page'),(3380,8132,'_menu_item_target',''),(3381,8132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3382,8132,'_menu_item_xfn',''),(3383,8132,'_menu_item_url',''),(3384,8132,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3385,8132,'_menu_item_ct_icon',''),(3386,8132,'_wp_old_date','2021-03-29'),(3387,8133,'_menu_item_type','post_type'),(3388,8133,'_menu_item_menu_item_parent','8030'),(3389,8133,'_menu_item_object_id','367'),(3390,8133,'_menu_item_object','page'),(3391,8133,'_menu_item_target',''),(3392,8133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3393,8133,'_menu_item_xfn',''),(3394,8133,'_menu_item_url',''),(3395,8133,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3396,8133,'_menu_item_ct_icon',''),(3397,8133,'_wp_old_date','2021-03-29'),(3398,8134,'_menu_item_type','post_type'),(3399,8134,'_menu_item_menu_item_parent','0'),(3400,8134,'_menu_item_object_id','407'),(3401,8134,'_menu_item_object','page'),(3402,8134,'_menu_item_target',''),(3403,8134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3404,8134,'_menu_item_xfn',''),(3405,8134,'_menu_item_url',''),(3406,8134,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3407,8134,'_menu_item_ct_icon',''),(3408,8134,'_menu_item_ct_megaprofile','0'),(3409,8134,'_menu_item_ct_onepage','no-one-page'),(3410,8134,'_menu_item_ct_onepage_offset',''),(3411,8134,'_wp_old_date','2021-03-29'),(3412,8135,'_menu_item_type','post_type'),(3413,8135,'_menu_item_menu_item_parent','8137'),(3414,8135,'_menu_item_object_id','417'),(3415,8135,'_menu_item_object','page'),(3416,8135,'_menu_item_target',''),(3417,8135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3418,8135,'_menu_item_xfn',''),(3419,8135,'_menu_item_url',''),(3420,8135,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3421,8135,'_menu_item_ct_icon',''),(3422,8135,'_wp_old_date','2021-03-29'),(3423,8136,'_menu_item_type','post_type'),(3424,8136,'_menu_item_menu_item_parent','8137'),(3425,8136,'_menu_item_object_id','415'),(3426,8136,'_menu_item_object','page'),(3427,8136,'_menu_item_target',''),(3428,8136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3429,8136,'_menu_item_xfn',''),(3430,8136,'_menu_item_url',''),(3431,8136,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3432,8136,'_menu_item_ct_icon',''),(3433,8136,'_wp_old_date','2021-03-29'),(3434,8137,'_menu_item_type','post_type'),(3435,8137,'_menu_item_menu_item_parent','0'),(3436,8137,'_menu_item_object_id','415'),(3437,8137,'_menu_item_object','page'),(3438,8137,'_menu_item_target',''),(3439,8137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3440,8137,'_menu_item_xfn',''),(3441,8137,'_menu_item_url',''),(3442,8137,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3443,8137,'_menu_item_ct_icon',''),(3444,8137,'_menu_item_ct_megaprofile','0'),(3445,8137,'_menu_item_ct_onepage','no-one-page'),(3446,8137,'_menu_item_ct_onepage_offset',''),(3447,8137,'_wp_old_date','2021-03-29'),(3448,8138,'_menu_item_type','post_type'),(3449,8138,'_menu_item_menu_item_parent','8137'),(3450,8138,'_menu_item_object_id','579'),(3451,8138,'_menu_item_object','portfolio'),(3452,8138,'_menu_item_target',''),(3453,8138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3454,8138,'_menu_item_xfn',''),(3455,8138,'_menu_item_url',''),(3456,8138,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3457,8138,'_menu_item_ct_icon',''),(3458,8138,'_wp_old_date','2021-03-29'),(3459,8139,'_menu_item_type','post_type'),(3460,8139,'_menu_item_menu_item_parent','8141'),(3461,8139,'_menu_item_object_id','749'),(3462,8139,'_menu_item_object','page'),(3463,8139,'_menu_item_target',''),(3464,8139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3465,8139,'_menu_item_xfn',''),(3466,8139,'_menu_item_url',''),(3467,8139,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3468,8139,'_menu_item_ct_icon',''),(3469,8139,'_wp_old_date','2021-03-29'),(3470,8140,'_menu_item_type','post_type'),(3471,8140,'_menu_item_menu_item_parent','8141'),(3472,8140,'_menu_item_object_id','748'),(3473,8140,'_menu_item_object','page'),(3474,8140,'_menu_item_target',''),(3475,8140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3476,8140,'_menu_item_xfn',''),(3477,8140,'_menu_item_url',''),(3478,8140,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3479,8140,'_menu_item_ct_icon',''),(3480,8140,'_wp_old_date','2021-03-29'),(3481,8141,'_menu_item_type','post_type'),(3482,8141,'_menu_item_menu_item_parent','8030'),(3483,8141,'_menu_item_object_id','748'),(3484,8141,'_menu_item_object','page'),(3485,8141,'_menu_item_target',''),(3486,8141,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3487,8141,'_menu_item_xfn',''),(3488,8141,'_menu_item_url',''),(3489,8141,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3490,8141,'_menu_item_ct_icon',''),(3491,8141,'_menu_item_ct_megaprofile','0'),(3492,8141,'_menu_item_ct_onepage','no-one-page'),(3493,8141,'_menu_item_ct_onepage_offset',''),(3494,8141,'_wp_old_date','2021-03-29'),(3495,8142,'_menu_item_type','post_type'),(3496,8142,'_menu_item_menu_item_parent','8141'),(3497,8142,'_menu_item_object_id','783'),(3498,8142,'_menu_item_object','page'),(3499,8142,'_menu_item_target',''),(3500,8142,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3501,8142,'_menu_item_xfn',''),(3502,8142,'_menu_item_url',''),(3503,8142,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3504,8142,'_menu_item_ct_icon',''),(3505,8142,'_wp_old_date','2021-03-29'),(3506,8143,'_menu_item_type','post_type'),(3507,8143,'_menu_item_menu_item_parent','8030'),(3508,8143,'_menu_item_object_id','1972'),(3509,8143,'_menu_item_object','page'),(3510,8143,'_menu_item_target',''),(3511,8143,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3512,8143,'_menu_item_xfn',''),(3513,8143,'_menu_item_url',''),(3514,8143,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3515,8143,'_menu_item_ct_icon',''),(3516,8143,'_wp_old_date','2021-03-29'),(3517,8144,'_menu_item_type','post_type'),(3518,8144,'_menu_item_menu_item_parent','8112'),(3519,8144,'_menu_item_object_id','3520'),(3520,8144,'_menu_item_object','page'),(3521,8144,'_menu_item_target',''),(3522,8144,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3523,8144,'_menu_item_xfn',''),(3524,8144,'_menu_item_url',''),(3525,8144,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3526,8144,'_menu_item_ct_icon',''),(3527,8144,'_wp_old_date','2021-03-29'),(3528,8145,'_menu_item_type','post_type'),(3529,8145,'_menu_item_menu_item_parent','8112'),(3530,8145,'_menu_item_object_id','3518'),(3531,8145,'_menu_item_object','page'),(3532,8145,'_menu_item_target',''),(3533,8145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3534,8145,'_menu_item_xfn',''),(3535,8145,'_menu_item_url',''),(3536,8145,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3537,8145,'_menu_item_ct_icon',''),(3538,8145,'_wp_old_date','2021-03-29'),(3539,8146,'_menu_item_type','post_type'),(3540,8146,'_menu_item_menu_item_parent','8112'),(3541,8146,'_menu_item_object_id','3516'),(3542,8146,'_menu_item_object','page'),(3543,8146,'_menu_item_target',''),(3544,8146,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3545,8146,'_menu_item_xfn',''),(3546,8146,'_menu_item_url',''),(3547,8146,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3548,8146,'_menu_item_ct_icon',''),(3549,8146,'_wp_old_date','2021-03-29'),(3550,8147,'_menu_item_type','post_type'),(3551,8147,'_menu_item_menu_item_parent','8114'),(3552,8147,'_menu_item_object_id','3514'),(3553,8147,'_menu_item_object','page'),(3554,8147,'_menu_item_target',''),(3555,8147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3556,8147,'_menu_item_xfn',''),(3557,8147,'_menu_item_url',''),(3558,8147,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3559,8147,'_menu_item_ct_icon',''),(3560,8147,'_wp_old_date','2021-03-29'),(3583,8150,'_menu_item_type','post_type'),(3584,8150,'_menu_item_menu_item_parent','8110'),(3585,8150,'_menu_item_object_id','3504'),(3586,8150,'_menu_item_object','page'),(3587,8150,'_menu_item_target',''),(3588,8150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3589,8150,'_menu_item_xfn',''),(3590,8150,'_menu_item_url',''),(3591,8150,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3592,8150,'_menu_item_ct_icon',''),(3593,8150,'_wp_old_date','2021-03-29'),(3594,8151,'_menu_item_type','post_type'),(3595,8151,'_menu_item_menu_item_parent','8133'),(3596,8151,'_menu_item_object_id','3502'),(3597,8151,'_menu_item_object','page'),(3598,8151,'_menu_item_target',''),(3599,8151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3600,8151,'_menu_item_xfn',''),(3601,8151,'_menu_item_url',''),(3602,8151,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3603,8151,'_menu_item_ct_icon',''),(3604,8151,'_wp_old_date','2021-03-29'),(3605,8152,'_menu_item_type','post_type'),(3606,8152,'_menu_item_menu_item_parent','8133'),(3607,8152,'_menu_item_object_id','3500'),(3608,8152,'_menu_item_object','page'),(3609,8152,'_menu_item_target',''),(3610,8152,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3611,8152,'_menu_item_xfn',''),(3612,8152,'_menu_item_url',''),(3613,8152,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3614,8152,'_menu_item_ct_icon',''),(3615,8152,'_wp_old_date','2021-03-29'),(3616,8153,'_menu_item_type','post_type'),(3617,8153,'_menu_item_menu_item_parent','8133'),(3618,8153,'_menu_item_object_id','3497'),(3619,8153,'_menu_item_object','page'),(3620,8153,'_menu_item_target',''),(3621,8153,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3622,8153,'_menu_item_xfn',''),(3623,8153,'_menu_item_url',''),(3624,8153,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3625,8153,'_menu_item_ct_icon',''),(3626,8153,'_wp_old_date','2021-03-29'),(3660,8157,'_menu_item_type','post_type'),(3661,8157,'_menu_item_menu_item_parent','8113'),(3662,8157,'_menu_item_object_id','26'),(3663,8157,'_menu_item_object','page'),(3664,8157,'_menu_item_target',''),(3665,8157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3666,8157,'_menu_item_xfn',''),(3667,8157,'_menu_item_url',''),(3668,8157,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3669,8157,'_menu_item_ct_icon',''),(3670,8157,'_wp_old_date','2021-03-29'),(3682,8159,'_menu_item_type','post_type'),(3683,8159,'_menu_item_menu_item_parent','8110'),(3684,8159,'_menu_item_object_id','32'),(3685,8159,'_menu_item_object','page'),(3686,8159,'_menu_item_target',''),(3687,8159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3688,8159,'_menu_item_xfn',''),(3689,8159,'_menu_item_url',''),(3690,8159,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3691,8159,'_menu_item_ct_icon',''),(3692,8159,'_wp_old_date','2021-03-29'),(3693,8160,'_menu_item_type','post_type'),(3694,8160,'_menu_item_menu_item_parent','8112'),(3695,8160,'_menu_item_object_id','28'),(3696,8160,'_menu_item_object','page'),(3697,8160,'_menu_item_target',''),(3698,8160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3699,8160,'_menu_item_xfn',''),(3700,8160,'_menu_item_url',''),(3701,8160,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3702,8160,'_menu_item_ct_icon',''),(3703,8160,'_wp_old_date','2021-03-29'),(3704,8161,'_menu_item_type','post_type'),(3705,8161,'_menu_item_menu_item_parent','8133'),(3706,8161,'_menu_item_object_id','367'),(3707,8161,'_menu_item_object','page'),(3708,8161,'_menu_item_target',''),(3709,8161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3710,8161,'_menu_item_xfn',''),(3711,8161,'_menu_item_url',''),(3712,8161,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3713,8161,'_menu_item_ct_icon',''),(3714,8161,'_wp_old_date','2021-03-29'),(3715,8162,'_menu_item_type','post_type'),(3716,8162,'_menu_item_menu_item_parent','8134'),(3717,8162,'_menu_item_object_id','2627'),(3718,8162,'_menu_item_object','service'),(3719,8162,'_menu_item_target',''),(3720,8162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3721,8162,'_menu_item_xfn',''),(3722,8162,'_menu_item_url',''),(3723,8162,'_menu_item_ct_icon',''),(3724,8162,'_wp_old_date','2021-03-29'),(3725,8163,'_menu_item_type','post_type'),(3726,8163,'_menu_item_menu_item_parent','8134'),(3727,8163,'_menu_item_object_id','2625'),(3728,8163,'_menu_item_object','service'),(3729,8163,'_menu_item_target',''),(3730,8163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3731,8163,'_menu_item_xfn',''),(3732,8163,'_menu_item_url',''),(3733,8163,'_menu_item_ct_icon',''),(3734,8163,'_wp_old_date','2021-03-29'),(3735,8164,'_menu_item_type','post_type'),(3736,8164,'_menu_item_menu_item_parent','8136'),(3737,8164,'_menu_item_object_id','4359'),(3738,8164,'_menu_item_object','page'),(3739,8164,'_menu_item_target',''),(3740,8164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3741,8164,'_menu_item_xfn',''),(3742,8164,'_menu_item_url',''),(3743,8164,'_menu_item_ct_icon',''),(3744,8164,'_wp_old_date','2021-03-29'),(3745,8165,'_menu_item_type','post_type'),(3746,8165,'_menu_item_menu_item_parent','8136'),(3747,8165,'_menu_item_object_id','4357'),(3748,8165,'_menu_item_object','page'),(3749,8165,'_menu_item_target',''),(3750,8165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3751,8165,'_menu_item_xfn',''),(3752,8165,'_menu_item_url',''),(3753,8165,'_menu_item_ct_icon',''),(3754,8165,'_wp_old_date','2021-03-29'),(3755,8166,'_menu_item_type','post_type'),(3756,8166,'_menu_item_menu_item_parent','8136'),(3757,8166,'_menu_item_object_id','4355'),(3758,8166,'_menu_item_object','page'),(3759,8166,'_menu_item_target',''),(3760,8166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3761,8166,'_menu_item_xfn',''),(3762,8166,'_menu_item_url',''),(3763,8166,'_menu_item_ct_icon',''),(3764,8166,'_wp_old_date','2021-03-29'),(3765,8167,'_menu_item_type','post_type'),(3766,8167,'_menu_item_menu_item_parent','8136'),(3767,8167,'_menu_item_object_id','415'),(3768,8167,'_menu_item_object','page'),(3769,8167,'_menu_item_target',''),(3770,8167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3771,8167,'_menu_item_xfn',''),(3772,8167,'_menu_item_url',''),(3773,8167,'_menu_item_ct_icon',''),(3774,8167,'_wp_old_date','2021-03-29'),(3775,8168,'_menu_item_type','post_type'),(3776,8168,'_menu_item_menu_item_parent','8134'),(3777,8168,'_menu_item_object_id','446'),(3778,8168,'_menu_item_object','service'),(3779,8168,'_menu_item_target',''),(3780,8168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3781,8168,'_menu_item_xfn',''),(3782,8168,'_menu_item_url',''),(3783,8168,'_menu_item_ct_icon',''),(3784,8168,'_wp_old_date','2021-03-29'),(3785,8169,'_menu_item_type','post_type'),(3786,8169,'_menu_item_menu_item_parent','8030'),(3787,8169,'_menu_item_object_id','407'),(3788,8169,'_menu_item_object','page'),(3789,8169,'_menu_item_target',''),(3790,8169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3791,8169,'_menu_item_xfn',''),(3792,8169,'_menu_item_url',''),(3793,8169,'_menu_item_ct_megaprofile','0'),(3794,8169,'_menu_item_ct_icon',''),(3795,8169,'_menu_item_ct_onepage','no-one-page'),(3796,8169,'_menu_item_ct_onepage_offset',''),(3797,8169,'_wp_old_date','2021-03-29'),(3798,8170,'_menu_item_type','post_type'),(3799,8170,'_menu_item_menu_item_parent','8134'),(3800,8170,'_menu_item_object_id','649'),(3801,8170,'_menu_item_object','service'),(3802,8170,'_menu_item_target',''),(3803,8170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3804,8170,'_menu_item_xfn',''),(3805,8170,'_menu_item_url',''),(3806,8170,'_menu_item_ct_megaprofile','0'),(3807,8170,'_menu_item_ct_icon',''),(3808,8170,'_menu_item_ct_onepage','no-one-page'),(3809,8170,'_menu_item_ct_onepage_offset',''),(3810,8170,'_wp_old_date','2021-03-29'),(3811,8171,'_menu_item_type','post_type'),(3812,8171,'_menu_item_menu_item_parent','8134'),(3813,8171,'_menu_item_object_id','407'),(3814,8171,'_menu_item_object','page'),(3815,8171,'_menu_item_target',''),(3816,8171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3817,8171,'_menu_item_xfn',''),(3818,8171,'_menu_item_url',''),(3819,8171,'_menu_item_ct_megaprofile','0'),(3820,8171,'_menu_item_ct_icon',''),(3821,8171,'_menu_item_ct_onepage','no-one-page'),(3822,8171,'_menu_item_ct_onepage_offset',''),(3823,8171,'_wp_old_date','2021-03-29'),(3824,8172,'_menu_item_type','post_type'),(3825,8172,'_menu_item_menu_item_parent','8041'),(3826,8172,'_menu_item_object_id','7110'),(3827,8172,'_menu_item_object','page'),(3828,8172,'_menu_item_target',''),(3829,8172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3830,8172,'_menu_item_xfn',''),(3831,8172,'_menu_item_url',''),(3832,8172,'_menu_item_ct_megaprofile','0'),(3833,8172,'_menu_item_ct_icon',''),(3834,8172,'_menu_item_ct_onepage','no-one-page'),(3835,8172,'_menu_item_ct_onepage_offset',''),(3836,8172,'_wp_old_date','2021-03-29'),(3837,8173,'_menu_item_type','post_type'),(3838,8173,'_menu_item_menu_item_parent','8041'),(3839,8173,'_menu_item_object_id','7107'),(3840,8173,'_menu_item_object','page'),(3841,8173,'_menu_item_target',''),(3842,8173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3843,8173,'_menu_item_xfn',''),(3844,8173,'_menu_item_url',''),(3845,8173,'_menu_item_ct_megaprofile','0'),(3846,8173,'_menu_item_ct_icon',''),(3847,8173,'_menu_item_ct_onepage','no-one-page'),(3848,8173,'_menu_item_ct_onepage_offset',''),(3849,8173,'_wp_old_date','2021-03-29'),(3850,7786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:93;s:6:\"height\";i:122;s:4:\"file\";s:18:\"2021/04/h-logo.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:{}}}'),(3851,7782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1172;s:6:\"height\";i:440;s:4:\"file\";s:27:\"2021/04/h-bg-newsletter.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h-bg-newsletter-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h-bg-newsletter-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h-bg-newsletter-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:27:\"h-bg-newsletter-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"h-bg-newsletter-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"h-bg-newsletter-600x440.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3852,7781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2019/11/u-blog-02.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"u-blog-02-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"u-blog-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:21:\"u-blog-02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"u-blog-02-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"u-blog-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3853,7746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:530;s:4:\"file\";s:19:\"2021/04/h-phone.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h-phone-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-phone-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:19:\"h-phone-768x473.png\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"h-phone-860x313.png\";s:5:\"width\";i:860;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"h-phone-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3854,7739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:56;s:6:\"height\";i:38;s:4:\"file\";s:25:\"2021/04/h-icon-arrow1.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:{}}}'),(3855,7683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:467;s:4:\"file\";s:25:\"2021/04/h-bg-section9.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h-bg-section9-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h-bg-section9-1024x249.png\";s:5:\"width\";i:1024;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section9-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:25:\"h-bg-section9-768x187.png\";s:5:\"width\";i:768;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section9-1536x374.png\";s:5:\"width\";i:1536;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section9-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section9-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3856,7616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1199;s:4:\"file\";s:25:\"2021/04/h-bg-section8.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section8-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:26:\"h-bg-section8-1024x639.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section8-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:25:\"h-bg-section8-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section8-1536x959.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section8-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section8-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3857,7538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:221;s:6:\"height\";i:45;s:4:\"file\";s:22:\"2019/12/case-logo2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"case-logo2-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;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:{}}}'),(3858,7525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:680;s:4:\"file\";s:19:\"2021/04/h-case2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h-case2-300x255.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-case2-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:\"h-case2-768x653.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"h-case2-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"h-case2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3859,7517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:45;s:4:\"file\";s:22:\"2019/12/case-logo1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"case-logo1-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;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:{}}}'),(3860,7507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:684;s:4:\"file\";s:25:\"2021/04/h-bg-section7.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section7-300x107.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h-bg-section7-1024x365.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section7-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:25:\"h-bg-section7-768x274.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section7-1536x547.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section7-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section7-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3861,7500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:946;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2019/12/h-case1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h-case1-300x254.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-case1-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:\"h-case1-768x649.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:649;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"h-case1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"h-case1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3862,7454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:642;s:4:\"file\";s:25:\"2021/04/h-bg-section5.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section5-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h-bg-section5-1024x342.png\";s:5:\"width\";i:1024;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section5-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:25:\"h-bg-section5-768x257.png\";s:5:\"width\";i:768;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section5-1536x514.png\";s:5:\"width\";i:1536;s:6:\"height\";i:514;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section5-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section5-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3863,7441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2021/04/h-icon3.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h-icon3-300x265.png\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-icon3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3864,7440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:286;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2021/04/h-icon2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-icon2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3865,7439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:351;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2021/04/h-icon1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h-icon1-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h-icon1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3866,7416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:439;s:4:\"file\";s:25:\"2021/03/h-bg-section4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h-bg-section4-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h-bg-section4-1024x234.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section4-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:25:\"h-bg-section4-768x176.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section4-1536x351.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section4-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section4-600x439.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:439;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:{}}}'),(3867,7304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:657;s:4:\"file\";s:25:\"2021/03/h-bg-section2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section2-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h-bg-section2-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h-bg-section2-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:25:\"h-bg-section2-768x263.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h-bg-section2-1536x526.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"h-bg-section2-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"h-bg-section2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3868,7267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:534;s:4:\"file\";s:21:\"2021/03/h-banner1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h-banner1-213x300.jpg\";s:5:\"width\";i:213;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h-banner1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h-banner1-380x313.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h-banner1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;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:{}}}'),(3869,7257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1657;s:6:\"height\";i:651;s:4:\"file\";s:27:\"2021/03/h-bg-section1-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h-bg-section1-1-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h-bg-section1-1-1024x402.png\";s:5:\"width\";i:1024;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h-bg-section1-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:27:\"h-bg-section1-1-768x302.png\";s:5:\"width\";i:768;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h-bg-section1-1-1536x603.png\";s:5:\"width\";i:1536;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"h-bg-section1-1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"h-bg-section1-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3870,7135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:575;s:4:\"file\";s:22:\"2021/03/bg-slider3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-slider3-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider3-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider3-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:\"bg-slider3-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"bg-slider3-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"bg-slider3-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"bg-slider3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3871,7134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:575;s:4:\"file\";s:22:\"2021/03/bg-slider2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-slider2-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider2-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider2-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:\"bg-slider2-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"bg-slider2-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"bg-slider2-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"bg-slider2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3872,7099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:575;s:4:\"file\";s:22:\"2021/03/bg-slider1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-slider1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider1-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider1-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:\"bg-slider1-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"bg-slider1-1536x460.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"bg-slider1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"bg-slider1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3873,7046,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:453;s:4:\"file\";s:22:\"2019/10/bg-footer1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-footer1-300x71.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:71;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-footer1-1024x242.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-footer1-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:\"bg-footer1-768x181.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"bg-footer1-1536x362.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"bg-footer1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"bg-footer1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3874,7043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:607;s:6:\"height\";i:160;s:4:\"file\";s:22:\"2021/03/logo-light.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logo-light-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-light-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"logo-light-600x160.png\";s:5:\"width\";i:600;s:6:\"height\";i:160;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:{}}}'),(3875,7042,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:607;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2021/03/logo-dark.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-dark-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-dark-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"logo-dark-600x160.png\";s:5:\"width\";i:600;s:6:\"height\";i:160;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:{}}}'),(3876,7041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:19:\"2021/03/favicon.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:{}}}'),(3877,6993,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:430;s:4:\"file\";s:28:\"2021/02/about-section-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"about-section-01-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"about-section-01-1024x229.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-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:28:\"about-section-01-768x172.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"about-section-01-1536x344.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"about-section-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;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:{}}}'),(3878,6991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2021/02/theme23.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"theme23-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"theme23-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-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:\"theme23-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"theme23-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"theme23-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"theme23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3879,6622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2021/02/u-testimonial-01.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"u-testimonial-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3880,6420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2021/02/video-intro1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"video-intro1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"video-intro1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"video-intro1-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;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:{}}}'),(3881,6310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:570;s:4:\"file\";s:25:\"2021/02/bg-page-title.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-page-title-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1024x304.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-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:25:\"bg-page-title-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1536x456.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-page-title-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3882,6106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:25:\"2019/11/digital-blog2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"digital-blog2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"digital-blog2-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"digital-blog2-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:25:\"digital-blog2-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"digital-blog2-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"digital-blog2-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"digital-blog2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3883,6105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:25:\"2019/11/digital-blog1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"digital-blog1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"digital-blog1-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"digital-blog1-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:25:\"digital-blog1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"digital-blog1-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"digital-blog1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"digital-blog1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:15:\"www.freepik.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3884,5979,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:324;s:4:\"file\";s:27:\"2020/12/digital-team-04.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"digital-team-04-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"digital-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"digital-team-04-269x313.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:313;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:{}}}'),(3885,5978,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:324;s:4:\"file\";s:27:\"2020/12/digital-team-03.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"digital-team-03-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"digital-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"digital-team-03-269x313.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:313;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:{}}}'),(3886,5977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:324;s:4:\"file\";s:27:\"2020/12/digital-team-02.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"digital-team-02-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"digital-team-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"digital-team-02-269x313.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:313;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:{}}}'),(3887,5976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:269;s:6:\"height\";i:324;s:4:\"file\";s:27:\"2020/12/digital-team-01.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"digital-team-01-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"digital-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"digital-team-01-269x313.jpg\";s:5:\"width\";i:269;s:6:\"height\";i:313;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:{}}}'),(3888,5534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1553;s:6:\"height\";i:960;s:4:\"file\";s:20:\"2019/11/ud-blog1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ud-blog1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"ud-blog1-1024x633.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ud-blog1-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:20:\"ud-blog1-768x475.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"ud-blog1-1536x949.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:949;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"ud-blog1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"ud-blog1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3889,4963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:137;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2020/06/client-img5.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:{}}}'),(3890,4962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:89;s:6:\"height\";i:85;s:4:\"file\";s:23:\"2020/06/client-img4.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:{}}}'),(3891,4961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:64;s:4:\"file\";s:23:\"2020/06/client-img3.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:{}}}'),(3892,4960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:82;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2020/06/client-img2.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:{}}}'),(3893,4959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:23:\"2020/06/client-img1.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:{}}}'),(3894,4805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio5.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-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:32:\"corporate-portfolio5-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3895,4804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio4.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-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:32:\"corporate-portfolio4-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3896,4716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/03/update-service-02.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"update-service-02-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:30:\"update-service-02-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:29:\"update-service-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:29:\"update-service-02-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"update-service-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"update-service-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:14:\"Matej Kastelic\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3897,4715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/03/update-service-01.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"update-service-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:30:\"update-service-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:29:\"update-service-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:29:\"update-service-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"update-service-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"update-service-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3898,4705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/11/update-blog3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"update-blog3-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:25:\"update-blog3-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:24:\"update-blog3-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:\"update-blog3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"update-blog3-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"update-blog3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3899,3852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:538;s:6:\"height\";i:368;s:4:\"file\";s:22:\"2020/02/contact-v4.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"contact-v4-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"contact-v4-538x313.png\";s:5:\"width\";i:538;s:6:\"height\";i:313;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:{}}}'),(3900,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:278;s:4:\"file\";s:25:\"2020/02/about4-shape1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"about4-shape1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3901,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:545;s:6:\"height\";i:464;s:4:\"file\";s:21:\"2020/02/h4-about1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x313.png\";s:5:\"width\";i:545;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x450.png\";s:5:\"width\";i:545;s:6:\"height\";i:450;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:{}}}'),(3902,3669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2020/02/about4-bg-section1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"about4-bg-section1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-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:\"about4-bg-section1-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3903,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:46;s:4:\"file\";s:24:\"2020/02/about4-icon3.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:{}}}'),(3904,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:48;s:4:\"file\";s:24:\"2020/02/about4-icon2.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:{}}}'),(3905,3663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:43;s:4:\"file\";s:24:\"2020/02/about4-icon1.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:{}}}'),(3906,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:691;s:4:\"file\";s:28:\"2020/02/h6-bg-section-02.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1024x369.png\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-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:28:\"h6-bg-section-02-768x276.png\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1536x553.png\";s:5:\"width\";i:1536;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3907,3401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team4.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team4-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:20:\"h6-team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team4-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;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:{}}}'),(3908,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team3.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team3-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:20:\"h6-team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team3-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;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:{}}}'),(3909,3399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team2.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team2-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:20:\"h6-team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team2-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;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:{}}}'),(3910,3383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2020/02/h6-team1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team1-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:20:\"h6-team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team1-350x313.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:313;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:{}}}'),(3911,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:697;s:4:\"file\";s:28:\"2020/01/h6-bg-section-01.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1024x372.png\";s:5:\"width\";i:1024;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-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:\"h6-bg-section-01-768x279.png\";s:5:\"width\";i:768;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1536x558.png\";s:5:\"width\";i:1536;s:6:\"height\";i:558;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3912,2845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:444;s:4:\"file\";s:18:\"2019/12/h4-map.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h4-map-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h4-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"h4-map-734x313.png\";s:5:\"width\";i:734;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"h4-map-600x444.png\";s:5:\"width\";i:600;s:6:\"height\";i:444;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:{}}}'),(3913,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:535;s:6:\"height\";i:519;s:4:\"file\";s:21:\"2019/12/h4-about1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x291.png\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h4-about1-535x313.png\";s:5:\"width\";i:535;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-535x450.png\";s:5:\"width\";i:535;s:6:\"height\";i:450;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:{}}}'),(3914,2671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:316;s:4:\"file\";s:18:\"2019/12/h3-map.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h3-map-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h3-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"h3-map-524x313.png\";s:5:\"width\";i:524;s:6:\"height\";i:313;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:{}}}'),(3915,2606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-02.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3916,2602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:779;s:6:\"height\";i:735;s:4:\"file\";s:27:\"2019/12/bg-section-07-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-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:27:\"bg-section-07-1-768x725.png\";s:5:\"width\";i:768;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-779x313.png\";s:5:\"width\";i:779;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3917,2528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:858;s:4:\"file\";s:25:\"2019/12/bg-section-07.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-258x300.png\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-07-739x313.png\";s:5:\"width\";i:739;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3918,2391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:795;s:4:\"file\";s:25:\"2019/12/bg-section-05.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1024x424.png\";s:5:\"width\";i:1024;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-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:25:\"bg-section-05-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1536x636.png\";s:5:\"width\";i:1536;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-05-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3919,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:24:\"2019/12/signature-02.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:{}}}'),(3920,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:730;s:4:\"file\";s:21:\"2019/12/banner-01.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"banner-01-510x313.png\";s:5:\"width\";i:510;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"banner-01-510x450.png\";s:5:\"width\";i:510;s:6:\"height\";i:450;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:{}}}'),(3921,2180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:294;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2019/12/award.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"award-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3922,2179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:186;s:6:\"height\";i:123;s:4:\"file\";s:22:\"2019/12/award-year.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"award-year-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;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:{}}}'),(3923,2171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-02.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3924,2170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-01.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(3925,2125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:536;s:4:\"file\";s:25:\"2019/12/bg-section-04.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-section-04-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x286.png\";s:5:\"width\";i:1024;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-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:25:\"bg-section-04-768x214.png\";s:5:\"width\";i:768;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x429.png\";s:5:\"width\";i:1536;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3926,2117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-04.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-04-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-04-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;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:{}}}'),(3927,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-03.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-03-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-03-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;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:{}}}'),(3928,2115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-02.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-02-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-02-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;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:{}}}'),(3929,2114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-01.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-01-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-01-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;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:{}}}'),(3930,2091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:967;s:6:\"height\";i:749;s:4:\"file\";s:25:\"2019/12/bg-section-03.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x232.png\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-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:25:\"bg-section-03-768x595.png\";s:5:\"width\";i:768;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3931,2070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:775;s:4:\"file\";s:25:\"2019/12/bg-section-02.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1024x413.png\";s:5:\"width\";i:1024;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-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:25:\"bg-section-02-768x310.png\";s:5:\"width\";i:768;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1536x620.png\";s:5:\"width\";i:1536;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3932,2056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:715;s:4:\"file\";s:25:\"2019/12/bg-section-01.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-01-704x313.png\";s:5:\"width\";i:704;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3933,1991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:35;s:4:\"file\";s:28:\"2019/12/icon-themeforest.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:{}}}'),(3934,1990,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:44;s:4:\"file\";s:23:\"2019/12/icon-envato.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:{}}}'),(3935,1989,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:47;s:4:\"file\";s:27:\"2019/12/icon-codecanyon.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:{}}}'),(3936,1988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:41;s:4:\"file\";s:23:\"2019/12/icon-career.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:{}}}'),(3937,1985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:39;s:6:\"height\";i:40;s:4:\"file\";s:23:\"2019/12/icon-google.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:{}}}'),(3938,1939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2019/12/WhiteTailoredBlazer.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-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:31:\"WhiteTailoredBlazer-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:31:\"WhiteTailoredBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3939,1938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2019/12/SlimFitBrightBlue.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-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:\"SlimFitBrightBlue-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:\"SlimFitBrightBlue-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3940,1935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/12/PureSilkBlackTie.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-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:\"PureSilkBlackTie-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:\"PureSilkBlackTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3941,1934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2019/12/MonochromeCamiMidi.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-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:30:\"MonochromeCamiMidi-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:30:\"MonochromeCamiMidi-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3942,1933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2019/12/LightBlueShirt.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-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:\"LightBlueShirt-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:\"LightBlueShirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3943,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/FlatShoes.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-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:\"FlatShoes-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:\"FlatShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"FlatShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3944,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/12/ChelseaBoots.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-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:\"ChelseaBoots-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:\"ChelseaBoots-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3945,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/CamiSkaterFront.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-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:27:\"CamiSkaterFront-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:27:\"CamiSkaterFront-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3946,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/BlackSuit.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-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:\"BlackSuit-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:\"BlackSuit-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"BlackSuit-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3947,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackShoes.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-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:\"BlackShoes-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:\"BlackShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3948,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackDress.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-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:\"BlackDress-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:\"BlackDress-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackDress-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3949,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2019/12/BlackBlazer.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-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:23:\"BlackBlazer-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:\"BlackBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3950,1896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:1;s:4:\"file\";s:21:\"2019/12/about-gap.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-150x1.png\";s:5:\"width\";i:150;s:6:\"height\";i:1;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:{}}}'),(3951,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:21:\"2019/12/signature.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:{}}}'),(3952,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:631;s:4:\"file\";s:18:\"2019/12/about1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"about1-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"about1-558x313.png\";s:5:\"width\";i:558;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"about1-558x450.png\";s:5:\"width\";i:558;s:6:\"height\";i:450;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:{}}}'),(3953,1860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2019/12/theme-15.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-15-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:20:\"theme-15-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:20:\"theme-15-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-15-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-15-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3954,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:390;s:4:\"file\";s:23:\"2019/12/team-single.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"team-single-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"team-single-370x313.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:313;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:{}}}'),(3955,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3956,1692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3957,1691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3958,1690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3959,1678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2019/12/client-05.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-05-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;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:{}}}'),(3960,1658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-09.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3961,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-08.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3962,1656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-07.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3963,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:601;s:6:\"height\";i:706;s:4:\"file\";s:26:\"2019/12/contact-about1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"contact-about1-601x313.png\";s:5:\"width\";i:601;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3964,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-06.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-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:22:\"gallery-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3965,1556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-05.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-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:22:\"gallery-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3966,1555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-04.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-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:22:\"gallery-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3967,1554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-03.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-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:\"gallery-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3968,1553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-02.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-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:22:\"gallery-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3969,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-01.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-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:\"gallery-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3970,1543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-14.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-14-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-14-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-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:20:\"theme-14-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-14-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-14-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-14-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3971,1542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-13.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-13-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-13-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-13-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-13-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-13-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3972,1541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-12.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-12-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-12-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-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:20:\"theme-12-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-12-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-12-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3973,1540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-11.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-11-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-11-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-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:20:\"theme-11-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-11-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-11-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3974,1539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-10.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-10-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-10-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-10-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-10-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3975,1538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-09.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-09-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-09-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-09-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-09-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-09-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-09-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3976,1537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-08.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-08-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-08-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-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:20:\"theme-08-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-08-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-08-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-08-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3977,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-07.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-07-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-07-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-07-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3978,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-06.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-06-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-06-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-06-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3979,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-05.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-05-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-05-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-05-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3980,1533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-04.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-04-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-04-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3981,1532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-03.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-03-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3982,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-02.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-02-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-02-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3983,1530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-01-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-01-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(3984,1524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:45;s:4:\"file\";s:23:\"2019/10/google-play.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:{}}}'),(3985,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:46;s:4:\"file\";s:21:\"2019/10/app-store.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"app-store-150x46.png\";s:5:\"width\";i:150;s:6:\"height\";i:46;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:{}}}'),(3986,1000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-04.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-04-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;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:{}}}'),(3987,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2019/11/client-03.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-03-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;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:{}}}'),(3988,998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:42;s:4:\"file\";s:21:\"2019/11/client-02.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:{}}}'),(3989,997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:169;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-01.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-01-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;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:{}}}'),(3990,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-06.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3991,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-05.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3992,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3993,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3996,4587,'_elementor_page_assets','a:0:{}'),(3998,5137,'_elementor_page_assets','a:0:{}'),(3999,9,'_elementor_page_assets','a:0:{}'),(4001,20,'_elementor_page_assets','a:0:{}'),(4002,9,'_edit_lock','1645700904:1'),(4003,8174,'_elementor_edit_mode','builder'),(4004,8174,'_elementor_template_type','kit'),(4005,8174,'_elementor_version','3.5.3'),(4010,8175,'_elementor_edit_mode','builder'),(4011,8175,'_elementor_template_type','wp-page'),(4012,8175,'_elementor_version','3.1.4'),(4013,8175,'_wp_page_template','default'),(4014,8175,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\"},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"We\\u2019re driven to make the complex simple.\\n                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f84aae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a19acee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"9734541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8f802\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(4015,8175,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(4016,8175,'_elementor_page_assets','a:0:{}'),(4017,8176,'_elementor_edit_mode','builder'),(4018,8176,'_elementor_template_type','wp-page'),(4019,8176,'_elementor_version','3.1.4'),(4020,8176,'_wp_page_template','default'),(4021,8176,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\"},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"We\\u2019re driven to make the complex simple.\\n                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f84aae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a19acee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"9734541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8f802\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(4022,8176,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(4023,8176,'_elementor_page_assets','a:0:{}'),(4024,8177,'_elementor_edit_mode','builder'),(4025,8177,'_elementor_template_type','wp-page'),(4026,8177,'_elementor_version','3.1.4'),(4027,8177,'_wp_page_template','default'),(4028,8177,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f84aae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a19acee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"9734541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8f802\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(4029,8177,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(4030,8177,'_elementor_page_assets','a:0:{}'),(4034,237,'_wp_attached_file','2019/11/author-01-1.jpg'),(4035,237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:23:\"2019/11/author-01-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4036,237,'_wp_attachment_wp_user_avatar','2'),(4037,238,'_wp_attached_file','2019/11/author-02-1.jpg'),(4038,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:23:\"2019/11/author-02-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4039,238,'_wp_attachment_wp_user_avatar','3'),(4040,398,'_wp_attached_file','2019/11/testimonial-02-1.jpg'),(4041,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:28:\"2019/11/testimonial-02-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4042,399,'_wp_attached_file','2019/11/testimonial-03-1.jpg'),(4043,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:28:\"2019/11/testimonial-03-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4044,1512,'_wp_attached_file','2019/11/bg-page-title-1.jpg'),(4045,1512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:570;s:4:\"file\";s:27:\"2019/11/bg-page-title-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"bg-page-title-1-1024x304.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-page-title-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:27:\"bg-page-title-1-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"bg-page-title-1-1536x456.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-page-title-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-page-title-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4046,1516,'_wp_attached_file','2019/10/bg-footer1-1.png'),(4047,1516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:337;s:4:\"file\";s:24:\"2019/10/bg-footer1-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bg-footer1-1-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-footer1-1-95x150.png\";s:5:\"width\";i:95;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"bg-footer1-1-95x313.png\";s:5:\"width\";i:95;s:6:\"height\";i:313;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:{}}}'),(4048,1932,'_wp_attached_file','2019/12/GreyShirt-1.jpg'),(4049,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2019/12/GreyShirt-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"GreyShirt-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:23:\"GreyShirt-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:23:\"GreyShirt-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"GreyShirt-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"GreyShirt-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4050,1936,'_wp_attached_file','2019/12/PureSilkBlueTie-1.jpg'),(4051,1936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2019/12/PureSilkBlueTie-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PureSilkBlueTie-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:29:\"PureSilkBlueTie-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:29:\"PureSilkBlueTie-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"PureSilkBlueTie-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"PureSilkBlueTie-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4052,1937,'_wp_attached_file','2019/12/PureSilkGreyTie-1.jpg'),(4053,1937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2019/12/PureSilkGreyTie-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PureSilkGreyTie-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:29:\"PureSilkGreyTie-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:29:\"PureSilkGreyTie-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"PureSilkGreyTie-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"PureSilkGreyTie-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4054,2074,'_wp_attached_file','2019/12/testimonial-10-1.jpg'),(4055,2074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:196;s:4:\"file\";s:28:\"2019/12/testimonial-10-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"testimonial-10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4056,2608,'_wp_attached_file','2019/12/h3-team-01-1.jpg'),(4057,2608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:24:\"2019/12/h3-team-01-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-team-01-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4058,2609,'_wp_attached_file','2019/12/h3-team-03-1.jpg'),(4059,2609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:24:\"2019/12/h3-team-03-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-team-03-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4060,2610,'_wp_attached_file','2019/12/h3-team-04-1.jpg'),(4061,2610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:24:\"2019/12/h3-team-04-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-team-04-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4062,3614,'_wp_attached_file','2020/02/theme23-1.jpg'),(4063,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2020/02/theme23-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"theme23-1-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"theme23-1-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"theme23-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:21:\"theme23-1-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"theme23-1-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"theme23-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"theme23-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4064,3628,'_wp_attached_file','2020/02/about-section-01-1.jpg'),(4065,3628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:430;s:4:\"file\";s:30:\"2020/02/about-section-01-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"about-section-01-1-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"about-section-01-1-1024x229.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about-section-01-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:30:\"about-section-01-1-768x172.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"about-section-01-1-1536x344.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"about-section-01-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"about-section-01-1-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;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:{}}}'),(4066,4639,'_wp_attached_file','2020/05/bg-page-title-u-1.jpg'),(4067,4639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:574;s:4:\"file\";s:29:\"2020/05/bg-page-title-u-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"bg-page-title-u-1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"bg-page-title-u-1-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"bg-page-title-u-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:29:\"bg-page-title-u-1-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"bg-page-title-u-1-1536x459.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"bg-page-title-u-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"bg-page-title-u-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4068,4703,'_wp_attached_file','2019/11/update-blog1-1.jpg'),(4069,4703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/11/update-blog1-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"update-blog1-1-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:27:\"update-blog1-1-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:26:\"update-blog1-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:26:\"update-blog1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"update-blog1-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"update-blog1-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:14:\"Matej Kastelic\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4070,4704,'_wp_attached_file','2019/11/update-blog2-1.jpg'),(4071,4704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2019/11/update-blog2-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"update-blog2-1-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:27:\"update-blog2-1-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:26:\"update-blog2-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:26:\"update-blog2-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"update-blog2-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"update-blog2-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4072,4801,'_wp_attached_file','2019/12/corporate-portfolio1-1.jpg'),(4073,4801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:650;s:4:\"file\";s:34:\"2019/12/corporate-portfolio1-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio1-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio1-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:34:\"corporate-portfolio1-1-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio1-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio1-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4074,4802,'_wp_attached_file','2019/12/corporate-portfolio2-1.jpg'),(4075,4802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:34:\"2019/12/corporate-portfolio2-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio2-1-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio2-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:34:\"corporate-portfolio2-1-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio2-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio2-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4076,4803,'_wp_attached_file','2019/12/corporate-portfolio3-1.jpg'),(4077,4803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:560;s:4:\"file\";s:34:\"2019/12/corporate-portfolio3-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio3-1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio3-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:34:\"corporate-portfolio3-1-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio3-1-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:34:\"corporate-portfolio3-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4078,4940,'_wp_attached_file','2020/02/update-theme1-1.jpg'),(4079,4940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"2020/02/update-theme1-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"update-theme1-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"update-theme1-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"update-theme1-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:27:\"update-theme1-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"update-theme1-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"update-theme1-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"update-theme1-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4080,5098,'_wp_attached_file','2020/06/marker-1.png'),(4081,5098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:261;s:6:\"height\";i:179;s:4:\"file\";s:20:\"2020/06/marker-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"marker-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4082,5163,'_wp_attached_file','2020/08/favicon-1.png'),(4083,5163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:21:\"2020/08/favicon-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:{}}}'),(4084,5164,'_wp_attached_file','2020/08/logo-dark-1.png'),(4085,5164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:177;s:4:\"file\";s:23:\"2020/08/logo-dark-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo-dark-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-dark-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"logo-dark-1-600x177.png\";s:5:\"width\";i:600;s:6:\"height\";i:177;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:{}}}'),(4086,5165,'_wp_attached_file','2020/08/logo-light-1.png'),(4087,5165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:177;s:4:\"file\";s:24:\"2020/08/logo-light-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"logo-light-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-light-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"logo-light-1-600x177.png\";s:5:\"width\";i:600;s:6:\"height\";i:177;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:{}}}'),(4088,5177,'_wp_attached_file','2020/08/bg-banner1-1.png'),(4089,5177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:898;s:4:\"file\";s:24:\"2020/08/bg-banner1-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-banner1-1-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-banner1-1-1024x479.png\";s:5:\"width\";i:1024;s:6:\"height\";i:479;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-banner1-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:24:\"bg-banner1-1-768x359.png\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-banner1-1-1536x718.png\";s:5:\"width\";i:1536;s:6:\"height\";i:718;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-banner1-1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-banner1-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4090,5181,'_wp_attached_file','2020/08/man1-1.png'),(4091,5181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:490;s:6:\"height\";i:773;s:4:\"file\";s:18:\"2020/08/man1-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"man1-1-190x300.png\";s:5:\"width\";i:190;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"man1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"man1-1-490x313.png\";s:5:\"width\";i:490;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"man1-1-490x450.png\";s:5:\"width\";i:490;s:6:\"height\";i:450;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:{}}}'),(4092,5204,'_wp_attached_file','2020/08/logo-footer-1.png'),(4093,5204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:171;s:6:\"height\";i:171;s:4:\"file\";s:25:\"2020/08/logo-footer-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"logo-footer-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4094,5220,'_wp_attached_file','2020/03/service-icon1-1.png'),(4095,5220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:176;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon1-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4096,5221,'_wp_attached_file','2020/03/service-icon2-1.png'),(4097,5221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon2-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4098,5222,'_wp_attached_file','2020/03/service-icon3-1.png'),(4099,5222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:182;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon3-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon3-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4100,5223,'_wp_attached_file','2020/03/service-icon4-1.png'),(4101,5223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:188;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon4-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon4-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4102,5224,'_wp_attached_file','2020/03/service-icon5-1.png'),(4103,5224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:186;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon5-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon5-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4104,5225,'_wp_attached_file','2020/03/service-icon6-1.png'),(4105,5225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:188;s:4:\"file\";s:27:\"2020/03/service-icon6-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"service-icon6-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4106,5243,'_wp_attached_file','2020/08/video-intro-1.jpg'),(4107,5243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:553;s:4:\"file\";s:25:\"2020/08/video-intro-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"video-intro-1-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"video-intro-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:25:\"video-intro-1-768x531.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"video-intro-1-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"video-intro-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4108,5271,'_wp_attached_file','2020/08/b2-testimonial-01-1.jpg'),(4109,5271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:210;s:4:\"file\";s:31:\"2020/08/b2-testimonial-01-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"b2-testimonial-01-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(4110,5292,'_wp_attached_file','2020/08/newsletter-consulting-1.png'),(4111,5292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:292;s:6:\"height\";i:434;s:4:\"file\";s:35:\"2020/08/newsletter-consulting-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"newsletter-consulting-1-202x300.png\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"newsletter-consulting-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"newsletter-consulting-1-292x313.png\";s:5:\"width\";i:292;s:6:\"height\";i:313;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:{}}}'),(4112,5298,'_wp_attached_file','2020/08/woocommerce-placeholder.png'),(4113,5298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/08/woocommerce-placeholder.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4114,5300,'_wp_attached_file','2020/08/b3-team-01-1.jpg'),(4115,5300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:340;s:4:\"file\";s:24:\"2020/08/b3-team-01-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"b3-team-01-1-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"b3-team-01-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"b3-team-01-1-247x313.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:313;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:{}}}'),(4116,5301,'_wp_attached_file','2020/08/b3-team-02-1.jpg'),(4117,5301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:340;s:4:\"file\";s:24:\"2020/08/b3-team-02-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"b3-team-02-1-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"b3-team-02-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"b3-team-02-1-247x313.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:313;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:{}}}'),(4118,5316,'_wp_attached_file','2020/08/bg-section-01-1.png'),(4119,5316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1916;s:6:\"height\";i:699;s:4:\"file\";s:27:\"2020/08/bg-section-01-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"bg-section-01-1-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"bg-section-01-1-1024x374.png\";s:5:\"width\";i:1024;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-01-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:27:\"bg-section-01-1-768x280.png\";s:5:\"width\";i:768;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"bg-section-01-1-1536x560.png\";s:5:\"width\";i:1536;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-section-01-1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-section-01-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4120,5326,'_wp_attached_file','2020/08/contact-image-left-1.jpg'),(4121,5326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:410;s:4:\"file\";s:32:\"2020/08/contact-image-left-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"contact-image-left-1-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"contact-image-left-1-1024x359.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:359;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"contact-image-left-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:32:\"contact-image-left-1-768x269.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"contact-image-left-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"contact-image-left-1-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;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:{}}}'),(4122,5329,'_wp_attached_file','2020/08/contact-image-right-1.jpg'),(4123,5329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:609;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2020/08/contact-image-right-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"contact-image-right-1-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"contact-image-right-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:33:\"contact-image-right-1-609x313.jpg\";s:5:\"width\";i:609;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:33:\"contact-image-right-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(4126,1214,'_elementor_edit_mode','builder'),(4127,1214,'_elementor_template_type','section'),(4128,1214,'_elementor_version','2.8.2'),(4129,1214,'_wp_page_template','default'),(4130,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(4131,1214,'post_views_count','10'),(4132,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4133,1217,'_elementor_edit_mode','builder'),(4134,1217,'_elementor_template_type','section'),(4135,1217,'_elementor_version','2.8.5'),(4136,1217,'_wp_page_template','default'),(4137,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$49\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(4138,1217,'post_views_count','6'),(4139,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4140,2331,'_elementor_edit_mode','builder'),(4141,2331,'_elementor_template_type','page'),(4142,2331,'_elementor_version','2.8.1'),(4143,2331,'post_views_count','7'),(4144,2331,'_wp_page_template','default'),(4145,2331,'_elementor_data','[{\"id\":\"d1cb5f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b6c6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cc1412\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cc92\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Corporate\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_id\":\"d6cdbb5\"},{\"title\":\"Commercial\",\"percent\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_id\":\"49b0207\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"4661156\"}],\"title_color\":\"#FFFFFF\",\"percent_color\":\"#FFFFFF\",\"bar_color\":\"#1A2742\"},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false}]'),(4146,2331,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_title\";a:3:{s:11:\"title_color\";i:1;s:13:\"percent_color\";i:1;s:9:\"bar_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4147,2439,'_edit_last','1'),(4148,2439,'_thumbnail_id','1540'),(4149,2439,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(4150,2439,'slide_template',''),(4151,2439,'_wp_page_template','default'),(4152,2439,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4153,2439,'_elementor_edit_mode','builder'),(4154,2439,'_elementor_template_type','wp-post'),(4155,2439,'_elementor_version','2.8.1'),(4156,2439,'post_views_count','0'),(4157,2439,'_elementor_data','[{\"id\":\"340cbfdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cf659e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7372ea55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2868029f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2690ecfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1661230c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7fe8a59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53d82b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-11.jpg\",\"id\":1540},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"331e7402\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3deccc7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5318ff72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ad17de4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4da6f8\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42701245\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ff1f6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"316e9fea\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4158,2439,'rs_page_bg_color',''),(4159,2439,'_wp_old_slug','on-behalf-of-world-bank-an-advocom-group'),(4160,2439,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(4161,2440,'_edit_last','1'),(4162,2440,'_thumbnail_id','1536'),(4163,2440,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(4164,2440,'slide_template',''),(4165,2440,'_wp_page_template','default'),(4166,2440,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4167,2440,'_elementor_edit_mode','builder'),(4168,2440,'_elementor_template_type','wp-post'),(4169,2440,'_elementor_version','2.8.1'),(4170,2440,'_elementor_data','[{\"id\":\"748ab28d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc47420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aaa25c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"660bb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a0a7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c74dc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bef493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78442ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"52b0f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db03d66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"731d0d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7270f1e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e9f61\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77721e8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71153a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"658f843d\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4171,2440,'rs_page_bg_color',''),(4172,2440,'_wp_old_slug','developing-a-program-to-be-alleviate-poverty'),(4173,2440,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(4174,2441,'_edit_last','1'),(4175,2441,'_thumbnail_id','1537'),(4176,2441,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(4177,2441,'slide_template',''),(4178,2441,'_wp_page_template','default'),(4179,2441,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4180,2441,'_elementor_edit_mode','builder'),(4181,2441,'_elementor_template_type','wp-post'),(4182,2441,'_elementor_version','2.8.1'),(4183,2441,'_elementor_data','[{\"id\":\"4b622493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"234c95f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6d3f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"34a4b4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f4d334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208b03a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3559fe71\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4758f776\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc799b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37f5a5ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"386c6f32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5b84a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5386a630\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30fe9fbc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1e70909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d3deaf6\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4184,2441,'rs_page_bg_color',''),(4185,2441,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(4186,2442,'_edit_last','1'),(4187,2442,'_thumbnail_id','1541'),(4188,2442,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(4189,2442,'slide_template',''),(4190,2442,'_wp_page_template','default'),(4191,2442,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4192,2442,'_elementor_edit_mode','builder'),(4193,2442,'_elementor_template_type','wp-post'),(4194,2442,'_elementor_version','2.8.1'),(4195,2442,'_elementor_data','[{\"id\":\"76b672b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584e90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273f5ae9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"5cb7221f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5a4cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7059f46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"54a846cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e5f03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"677fe665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62c7ab10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"23bc3b25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bc7c6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1946a97a\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40019989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"633b2d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52624d78\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4196,2442,'rs_page_bg_color',''),(4197,2442,'_wp_old_slug','international-business-development-relationships'),(4198,2442,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(4199,3872,'_elementor_edit_mode','builder'),(4200,3872,'_elementor_template_type','section'),(4201,3872,'_elementor_version','2.8.5'),(4202,3872,'post_views_count','2'),(4203,3872,'_wp_page_template','default'),(4204,3872,'_elementor_data','[{\"id\":\"7f5cbd63\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43484ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b6dc952\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$499\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"5ae0ebee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2a9c5d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"609a9e8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2b4161c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"12576590\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4a12a6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$699\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(4205,3872,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4206,3876,'_elementor_edit_mode','builder'),(4207,3876,'_elementor_template_type','section'),(4208,3876,'_elementor_version','2.8.5'),(4209,3876,'post_views_count','1'),(4210,3876,'_wp_page_template','default'),(4211,3876,'_elementor_data','[{\"id\":\"33a40038\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f276f89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"488fdba\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$99\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"8a7b665\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d68f4b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$199\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"f582dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"559076c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$299\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"4b28e043\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a416d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$399\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(4212,3876,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4213,4540,'_elementor_edit_mode','builder'),(4214,4540,'_elementor_template_type','kit'),(4215,4540,'_elementor_version','2.9.8'),(4216,4587,'_edit_last','1'),(4217,4587,'_wp_page_template','default'),(4218,4587,'slide_template',''),(4219,4587,'rs_page_bg_color',''),(4220,4587,'_elementor_edit_mode','builder'),(4221,4587,'_elementor_template_type','wp-post'),(4222,4587,'_elementor_version','2.9.14'),(4223,4587,'post_views_count','0'),(4224,4587,'_elementor_data','[{\"id\":\"4f149ec4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4b1d1c2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"350c630c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cbcb732\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"Hot\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"New\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"New\",\"_id\":\"b573ec1\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"215faf9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"6a11a2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"407d18db\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"Hot\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"New\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"78dbb901\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5b68931c\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"15ed8c26\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"New\",\"_id\":\"fa176ef\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7cb3d0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"15c22479\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"267327f9\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(4225,4587,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:18:\"title_space_bottom\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(4274,5137,'_edit_last','1'),(4275,5137,'_wp_page_template','default'),(4276,5137,'slide_template',''),(4277,5137,'rs_page_bg_color',''),(4278,5137,'_elementor_edit_mode','builder'),(4279,5137,'_elementor_template_type','wp-post'),(4280,5137,'_elementor_version','2.9.14'),(4281,5137,'_elementor_data','[{\"id\":\"11f7370\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"27051da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"27f95fa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interactive Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"43420956\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Testimonials\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/testimonials-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Blog Slider\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/blog-slider\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-newspaper\",\"library\":\"flaticonv3\"},\"_id\":\"25caa4d\",\"label\":\"\"},{\"text\":\"Portfolio Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/elements-portfolio-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"d1a9a4f\"},{\"text\":\"Service Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/service-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"be7ce10\"},{\"text\":\"Clients\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/clients\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"be34909\",\"label\":\"\"},{\"text\":\"History\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/history\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-history\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"7c5833e\"},{\"text\":\"Video Button\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/video-button\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-play-circle\",\"library\":\"fa-solid\"},\"_id\":\"f422155\",\"label\":\"\"},{\"text\":\"Columns\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/columns\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-columns\",\"library\":\"fa-solid\"},\"_id\":\"29a7115\",\"label\":\"\"},{\"text\":\"Row background\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/row-background\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-open-in-browser\",\"library\":\"material\"},\"_id\":\"f15ef7b\",\"label\":\"\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"48fd0d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"22b25e08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1014293\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Team Variations\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/team-variations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Buttons\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/buttons\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-dice-d6\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"cf56e8c\"},{\"text\":\"Tabs & Tours\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/tabs-tours\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ellipsis-h\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"2c2b9ad\"},{\"text\":\"Accordions & Toggles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/accordions-toggles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-server\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"0e5b944\"},{\"text\":\"Google Maps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/google-maps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-google-maps\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"b20f99c\"},{\"text\":\"Contact Forms 7\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/contact-forms-7\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-account-box-phone\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ec42890\"},{\"text\":\"Dividers\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dividers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-cut\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"3f7d182\"},{\"text\":\"Pricing Tables\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/pricing-tables\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-table\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"06e7c95\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"2d73d8d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"2ce67e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infographics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"50694cfe\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Counters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/counters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-sort-numeric-up\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Progress Bars\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/progress-bars\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-chart-line\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"53244c0\"},{\"text\":\"Icon With Text\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-with-text\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-gift\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"388c124\"},{\"text\":\"Icon Grid\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-grid\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-crown\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"10e9966\"},{\"text\":\"Image Box Fancy\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/image-box-fancy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-collection-folder-image\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ac49e20\"},{\"text\":\"Cover Boxes\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/cover-boxes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ticket-alt\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"caed56f\"},{\"text\":\"Newsletters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/newsletters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"d119127\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5a87c3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"480355a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Typography\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"acd6f6b\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Custom Fonts\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/custom-fonts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"material zmdi zmdi-font\",\"library\":\"material\"},\"label\":\"\"},{\"text\":\"Highlights\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/highlights\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-coffee\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ca12570\"},{\"text\":\"Blockquote\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/blockquote\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-right-quotation-mark\",\"library\":\"flaticonv2\"},\"label\":\"\",\"_id\":\"d26e2ad\"},{\"text\":\"Dropcaps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dropcaps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-width\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ee9bbb6\"},{\"text\":\"Message Box\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/message-box\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-assignment-alert\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"707a1d7\"},{\"text\":\"Lists\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/lists\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-list\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"19f958e\"},{\"text\":\"Titles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/titles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-height\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"e355a5d\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(4282,5137,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:18:\"title_space_bottom\";i:4;s:28:\"title_typography_font_weight\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(4283,5357,'_elementor_edit_mode','builder'),(4284,5357,'_elementor_template_type','page'),(4285,5357,'_elementor_version','2.9.14'),(4286,5357,'_wp_page_template','default'),(4287,5357,'_elementor_data','[{\"id\":\"3ae18265\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#08A4A4\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-banner1.png\",\"id\":5177},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78f624a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.832999999999998408384271897375583648681640625,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"724f09ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_color\":\"#161B39\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"200\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"31fe35e2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We have uncovered the five essential elements to maximizing its value.\",\"text_color\":\"#161B39\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"44f2c6ff\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-effect\",\"text\":\"Get Started\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"btn_bg_color\":\"#161B39\",\"btn_bg_color_hover\":\"#FFFFFF\",\"btn_color_hover\":\"#161B39\",\"_css_classes\":\"rm-box-shadow\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"500\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"12de8bea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417000000000001591615728102624416351318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59b5c0e7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/man1.png\",\"id\":5181},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false},{\"id\":\"7992301e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":11.4139999999999997015720509807579219341278076171875,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6967bf12\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":15,\"title\":\"Team member\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7bde34b2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":102,\"title\":\"Active <br\\/>cases\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"460aefe6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":105,\"title\":\"Client\\u2019s reviews\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"459b8817\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31c8600f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a176262\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our <b>platform<\\/b> connects companies with displaced <b>workforces<\\/b>\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Services\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1d29cf03\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"num_words\":15,\"col_lg\":\"4\",\"col_xl\":\"6\",\"dots\":\"true\",\"infinite\":\"true\",\"limit\":9,\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f7e98b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a57e6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"374b59aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"3bbd94e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67d347a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1474fff1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"2b1b20a5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"66512622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"7c589023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37447232\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3978d511\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"341f2b83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45320c90\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"776eb515\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22f9f811\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4dabab78\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"56791dca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"27c79277\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"sub_title\":\"\",\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"sub_title\":\"\",\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"sub_title\":\"\",\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"571b38b6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"4ad1b5ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f2a9bea\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fc9133b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"69639aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"334b4d31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7ba09cf5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"12b20f65\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2ffeac47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"168d02a9\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae6e131\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73051ad1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73105673\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"34c16aa\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4805072\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"19eb369f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"30998556\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"69abacf6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(4288,5357,'_elementor_controls_usage','a:17:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:10:{s:5:\"title\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:5;s:15:\"sub_title_color\";i:5;s:31:\"sub_title_typography_typography\";i:5;s:32:\"sub_title_typography_font_family\";i:5;s:30:\"sub_title_typography_font_size\";i:5;s:32:\"sub_title_typography_font_weight\";i:5;s:35:\"sub_title_typography_letter_spacing\";i:5;s:22:\"sub_title_space_bottom\";i:5;s:14:\"sub_title_line\";i:5;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:6;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:14:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:12:\"btn_bg_color\";i:1;s:18:\"btn_bg_color_hover\";i:1;s:15:\"btn_color_hover\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:4;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:2;s:11:\"image_align\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:5:{s:12:\"number_color\";i:3;s:28:\"number_typography_typography\";i:3;s:27:\"number_typography_font_size\";i:3;s:29:\"number_typography_font_weight\";i:3;s:19:\"number_space_bottom\";i:3;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:3;s:27:\"typography_title_typography\";i:3;s:28:\"typography_title_font_family\";i:3;s:26:\"typography_title_font_size\";i:3;s:28:\"typography_title_font_weight\";i:3;s:28:\"typography_title_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:3;s:3:\"gap\";i:10;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:6:{s:5:\"image\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;s:11:\"video_title\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}s:13:\"section_style\";a:15:{s:5:\"style\";i:2;s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_line_height\";i:2;s:10:\"desc_color\";i:2;s:26:\"desc_typography_typography\";i:2;s:25:\"desc_typography_font_size\";i:2;s:27:\"desc_typography_line_height\";i:2;s:18:\"title_space_bottom\";i:2;s:14:\"icon_font_size\";i:2;s:16:\"icon_space_right\";i:2;s:14:\"icon_space_top\";i:2;s:10:\"ct_animate\";i:2;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:5:\"style\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:7:{s:5:\"style\";i:1;s:9:\"sub_title\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:11:\"email_label\";i:1;s:12:\"image_bg_box\";i:1;s:9:\"image_box\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:5:{s:4:\"team\";i:1;s:5:\"team2\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"team7\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:5:\"title\";i:1;s:10:\"image_left\";i:1;s:11:\"image_right\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;}s:14:\"source_section\";a:1:{s:8:\"style_l7\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:7:\"content\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}}'),(4289,8181,'_edit_last','1'),(4290,8181,'_wp_page_template','default'),(4291,8181,'_elementor_edit_mode','builder'),(4292,8181,'_elementor_template_type','wp-post'),(4293,8181,'_elementor_version','2.9.14'),(4294,8181,'post_views_count','0'),(4295,8181,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#1F323E\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71ef6258\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are <cite>Consultio!<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FAFAFA\",\"line_color\":\"#1F323E\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We work with a passion of taking challenges and creating new ones in advertising sector.\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Nunito Sans\",\"link_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1f6c22dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#FDFDFD\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33c12598\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cad40da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FAFAFA\",\"line_color\":\"#1F323E\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"12558334\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Subscribe our newsletter to get our latest update & news\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Nunito Sans\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ca7e4ea\",\"elType\":\"widget\",\"settings\":{\"style\":\"style4\",\"input_color\":\"#FFFFFF\",\"input_bg_color\":\"#364752\",\"button_bg_color\":\"#09A8A8\"},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c17b13a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official info:\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FAFAFA\",\"line_color\":\"#1F323E\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"envato@gmail.com<br\\/>\\ninfo@mail.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c0c3b88\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78b84aa0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FAFAFA\",\"line_color\":\"#1F323E\",\"title_typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4296,8181,'slide_template',''),(4297,8181,'rs_page_bg_color',''),(4298,8181,'_elementor_controls_usage','a:8:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:11:\"title_color\";i:4;s:10:\"line_color\";i:4;s:28:\"title_typography_font_weight\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:4;s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:4;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:4;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:22:\"typography_font_family\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:27:\"link_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:4:{s:5:\"style\";i:1;s:11:\"input_color\";i:1;s:14:\"input_bg_color\";i:1;s:15:\"button_bg_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:5:\"icons\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:4:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}}'),(4299,8182,'_menu_item_type','custom'),(4300,8182,'_menu_item_menu_item_parent','0'),(4301,8182,'_menu_item_object_id','8182'),(4302,8182,'_menu_item_object','custom'),(4303,8182,'_menu_item_target',''),(4304,8182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4305,8182,'_menu_item_xfn',''),(4306,8182,'_menu_item_url','#'),(4307,4680,'_mc4wp_settings','a:9:{s:5:\"lists\";a:1:{i:0;s:10:\"9bc6c4cc2e\";}s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";}'),(4308,4680,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),(4309,4680,'text_invalid_email','Please provide a valid email address.'),(4310,4680,'text_required_field_missing','Please fill in the required fields.'),(4311,4680,'text_already_subscribed','Given email address is already subscribed, thank you!'),(4312,4680,'text_error','Oops. Something went wrong. Please try again later.'),(4313,4680,'text_unsubscribed','You were successfully unsubscribed.'),(4314,4680,'text_not_subscribed','Given email address is not subscribed.'),(4315,4680,'text_no_lists_selected','Please select at least one list.'),(4316,4680,'text_updated','Thank you, your records have been updated!'),(4317,4680,'_wp_old_date','2020-05-08'),(4359,8183,'_menu_item_type','custom'),(4360,8183,'_menu_item_menu_item_parent','8182'),(4361,8183,'_menu_item_object_id','8183'),(4362,8183,'_menu_item_object','custom'),(4363,8183,'_menu_item_target',''),(4364,8183,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4365,8183,'_menu_item_xfn',''),(4366,8183,'_menu_item_url','https://demo.casethemes.net/consultio-business3/404-page/'),(4367,8184,'_menu_item_type','custom'),(4368,8184,'_menu_item_menu_item_parent','0'),(4369,8184,'_menu_item_object_id','8184'),(4370,8184,'_menu_item_object','custom'),(4371,8184,'_menu_item_target',''),(4372,8184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4373,8184,'_menu_item_xfn',''),(4374,8184,'_menu_item_url','#'),(4375,8185,'_menu_item_type','custom'),(4376,8185,'_menu_item_menu_item_parent','8184'),(4377,8185,'_menu_item_object_id','8185'),(4378,8185,'_menu_item_object','custom'),(4379,8185,'_menu_item_target',''),(4380,8185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4381,8185,'_menu_item_xfn',''),(4382,8185,'_menu_item_url','https://demo.casethemes.net/consultio-business3/404-page/'),(4383,8186,'_menu_item_type','custom'),(4384,8186,'_menu_item_menu_item_parent','0'),(4385,8186,'_menu_item_object_id','8186'),(4386,8186,'_menu_item_object','custom'),(4387,8186,'_menu_item_target',''),(4388,8186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4389,8186,'_menu_item_xfn',''),(4390,8186,'_menu_item_url','#'),(4391,8187,'_menu_item_type','custom'),(4392,8187,'_menu_item_menu_item_parent','0'),(4393,8187,'_menu_item_object_id','8187'),(4394,8187,'_menu_item_object','custom'),(4395,8187,'_menu_item_target',''),(4396,8187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4397,8187,'_menu_item_xfn',''),(4398,8187,'_menu_item_url','#'),(4399,8188,'_menu_item_type','custom'),(4400,8188,'_menu_item_menu_item_parent','0'),(4401,8188,'_menu_item_object_id','8188'),(4402,8188,'_menu_item_object','custom'),(4403,8188,'_menu_item_target',''),(4404,8188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4405,8188,'_menu_item_xfn',''),(4406,8188,'_menu_item_url','#'),(4407,8189,'_menu_item_type','custom'),(4408,8189,'_menu_item_menu_item_parent','8188'),(4409,8189,'_menu_item_object_id','8189'),(4410,8189,'_menu_item_object','custom'),(4411,8189,'_menu_item_target',''),(4412,8189,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4413,8189,'_menu_item_xfn',''),(4414,8189,'_menu_item_url','#'),(4415,8190,'_menu_item_type','custom'),(4416,8190,'_menu_item_menu_item_parent','8188'),(4417,8190,'_menu_item_object_id','8190'),(4418,8190,'_menu_item_object','custom'),(4419,8190,'_menu_item_target',''),(4420,8190,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4421,8190,'_menu_item_xfn',''),(4422,8190,'_menu_item_url','#'),(4423,9,'_elementor_edit_mode','builder'),(4424,9,'_elementor_template_type','wp-page'),(4425,9,'_elementor_version','3.5.5'),(4426,9,'_wp_page_template','default'),(4427,9,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients .\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4428,9,'_edit_last','1'),(4429,9,'custom_header','1'),(4430,9,'custom_pagetitle','hide'),(4431,9,'custom_title',''),(4432,9,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4433,9,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(4434,9,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4435,9,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(4436,9,'show_sidebar_page',''),(4437,9,'sidebar_page_pos','right'),(4438,9,'custom_footer','0'),(4439,9,'footer_layout_custom',''),(4440,9,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4441,9,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4442,9,'slide_template','default'),(4443,9,'header_layout','20'),(4444,9,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4445,9,'page_h_phone',''),(4446,9,'page_h_time',''),(4447,9,'loading_page','themeoption'),(4448,9,'loading_type','style1'),(4449,9,'page_back_totop','themeoption'),(4450,9,'rs_page_bg_color','#ffffff'),(4451,9,'p_page_title_color',''),(4452,9,'ptitle_overlay','themeoption'),(4453,9,'ptitle_breadcrumb_page','themeoption'),(4454,9,'ptitle_breadcrumb_color',''),(4455,9,'h_custom_menu',''),(4456,9,'h_custom_menu_left',''),(4457,9,'h_custom_menu_right',''),(4458,9,'_elementor_controls_usage','a:17:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:10:{s:5:\"title\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:5;s:15:\"sub_title_color\";i:5;s:31:\"sub_title_typography_typography\";i:5;s:32:\"sub_title_typography_font_family\";i:5;s:30:\"sub_title_typography_font_size\";i:5;s:32:\"sub_title_typography_font_weight\";i:5;s:35:\"sub_title_typography_letter_spacing\";i:5;s:22:\"sub_title_space_bottom\";i:5;s:14:\"sub_title_line\";i:5;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:6;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:14:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:12:\"btn_bg_color\";i:1;s:18:\"btn_bg_color_hover\";i:1;s:15:\"btn_color_hover\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:4;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:2;s:11:\"image_align\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:5:{s:12:\"number_color\";i:3;s:28:\"number_typography_typography\";i:3;s:27:\"number_typography_font_size\";i:3;s:29:\"number_typography_font_weight\";i:3;s:19:\"number_space_bottom\";i:3;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:3;s:27:\"typography_title_typography\";i:3;s:28:\"typography_title_font_family\";i:3;s:26:\"typography_title_font_size\";i:3;s:28:\"typography_title_font_weight\";i:3;s:28:\"typography_title_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:3;s:3:\"gap\";i:10;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:6;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:6:{s:5:\"image\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;s:11:\"video_title\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}s:13:\"section_style\";a:15:{s:5:\"style\";i:2;s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_line_height\";i:2;s:10:\"desc_color\";i:2;s:26:\"desc_typography_typography\";i:2;s:25:\"desc_typography_font_size\";i:2;s:27:\"desc_typography_line_height\";i:2;s:18:\"title_space_bottom\";i:2;s:14:\"icon_font_size\";i:2;s:16:\"icon_space_right\";i:2;s:14:\"icon_space_top\";i:2;s:10:\"ct_animate\";i:2;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:5:\"style\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:7:{s:5:\"style\";i:1;s:9:\"sub_title\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:11:\"email_label\";i:1;s:12:\"image_bg_box\";i:1;s:9:\"image_box\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:5:{s:4:\"team\";i:1;s:5:\"team2\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"team7\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:5:\"title\";i:1;s:10:\"image_left\";i:1;s:11:\"image_right\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;}s:14:\"source_section\";a:1:{s:8:\"style_l7\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:7:\"content\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}}'),(4479,26,'_edit_last','1'),(4480,26,'_wp_page_template','default'),(4481,26,'custom_header',''),(4482,26,'header_layout','1'),(4483,26,'custom_pagetitle','hide'),(4484,26,'custom_title','About us'),(4485,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4486,26,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(4487,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4488,26,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(4489,26,'show_sidebar_page',''),(4490,26,'sidebar_page_pos','right'),(4491,26,'custom_footer',''),(4492,26,'footer_layout_custom',''),(4494,26,'_elementor_edit_mode','builder'),(4495,26,'_elementor_template_type','wp-page'),(4496,26,'_elementor_version','3.5.5'),(4497,26,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4498,26,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4499,26,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4500,26,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4501,26,'page_h_phone',''),(4502,26,'page_h_time',''),(4503,26,'loading_page','themeoption'),(4504,26,'loading_type','style1'),(4505,26,'page_back_totop','themeoption'),(4507,26,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4508,28,'_edit_last','1'),(4509,28,'_wp_page_template','default'),(4510,28,'custom_header',''),(4511,28,'header_layout','1'),(4512,28,'custom_pagetitle','show'),(4513,28,'custom_title',''),(4514,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(4515,28,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4516,28,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#eef2fb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(238,242,251,1)\";}'),(4517,28,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4518,28,'show_sidebar_page',''),(4519,28,'sidebar_page_pos','right'),(4520,28,'custom_footer',''),(4521,28,'footer_layout_custom',''),(4522,28,'slide_template','default'),(4523,28,'_elementor_edit_mode','builder'),(4524,28,'_elementor_template_type','wp-page'),(4525,28,'_elementor_version','2.8.2'),(4526,28,'_elementor_data','[{\"id\":\"53e9f59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d122fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.417000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"a1dc510\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"603daca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d3ffe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dc6244\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d5aaa1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88f2e7b\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"35409ba\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Jewel D Smith\",\"position\":\"Executive Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"80b51bd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-02.jpg\",\"id\":1691},\"title\":\"Alan Smith\",\"position\":\"Managing Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"46930fd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-03.jpg\",\"id\":1692},\"title\":\"Brad Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"82fc396\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"71c9864\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-04.jpg\",\"id\":1693},\"title\":\"Joyce\\u00a0Thompson\",\"position\":\"Asistant Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"62b6c11\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"10be1e6\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Joyce Thompson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"ffd748f\",\"btn_text\":\"Details\"}],\"col_md\":\"2\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"186df5b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f140b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"661063e1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4527,28,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4528,28,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4529,28,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4530,30,'_edit_last','1'),(4531,30,'_wp_page_template','default'),(4532,30,'custom_header',''),(4533,30,'header_layout','1'),(4534,30,'custom_pagetitle','show'),(4535,30,'custom_title',''),(4536,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-06.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1535\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-06-150x150.jpg\";}}'),(4537,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4538,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4539,30,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4540,30,'show_sidebar_page',''),(4541,30,'sidebar_page_pos','right'),(4542,30,'custom_footer',''),(4543,30,'footer_layout_custom',''),(4544,30,'slide_template','default'),(4545,30,'_elementor_edit_mode','builder'),(4546,30,'_elementor_template_type','wp-page'),(4547,30,'_elementor_data','[{\"id\":\"595e705\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbf6e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e58aff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"0bac2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64b4dfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d88f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"74\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"325916e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60e5f30\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"0f620d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"346929e\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d6e093c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f503527\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fee7573\",\"elType\":\"widget\",\"settings\":{\"title\":\"Still have you any problem  for solutions?\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"d0a7700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d6687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership\\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6783ba1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dd5ac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"1bf7025\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1655275\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"daf846a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"ee30c25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.417000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6017a24\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"1615\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4290b7d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fc683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"65d291e6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a2d1f31\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4548,30,'_elementor_version','2.7.5'),(4549,30,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4550,30,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4551,30,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:2;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:12:\"ct_accordion\";i:2;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4552,32,'_edit_last','1'),(4553,32,'_wp_page_template','default'),(4554,32,'custom_header',''),(4555,32,'header_layout','1'),(4556,32,'custom_pagetitle','show'),(4557,32,'custom_title',''),(4558,32,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(4559,32,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4560,32,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4561,32,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4562,32,'show_sidebar_page',''),(4563,32,'sidebar_page_pos','right'),(4564,32,'custom_footer',''),(4565,32,'footer_layout_custom',''),(4566,32,'slide_template','default'),(4567,32,'_elementor_edit_mode','builder'),(4568,32,'_elementor_template_type','wp-page'),(4569,32,'_elementor_version','2.7.5'),(4570,32,'_elementor_data','[{\"id\":\"47aaa16\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2be9dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2740d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e3c1a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e8890\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\\nconnection, we create platforms.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8389a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"0632e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ba3c267\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1214\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1217\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5afa04\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2854a98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1927c5f8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4571,32,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4572,32,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4573,32,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4574,123,'_edit_last','1'),(4575,123,'_wp_page_template','default'),(4576,123,'custom_header',''),(4577,123,'header_layout','1'),(4578,123,'custom_pagetitle','themeoption'),(4579,123,'custom_title',''),(4580,123,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4581,123,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4582,123,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4583,123,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(4584,123,'show_sidebar_page',''),(4585,123,'sidebar_page_pos','right'),(4586,123,'custom_footer',''),(4587,123,'footer_layout_custom',''),(4588,123,'slide_template','default'),(4589,123,'_elementor_edit_mode','builder'),(4590,123,'_elementor_template_type','wp-page'),(4591,123,'_elementor_version','2.8.1'),(4592,123,'_elementor_data','[{\"id\":\"4f12f44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607e712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33eb12a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"20cca318\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dc34528\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"984afbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"baf5018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"be0576a\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"true\",\"limit\":6,\"col_md\":\"2\",\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33c065af\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8afbc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2eb38a40\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4593,123,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4594,123,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4595,123,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4596,125,'_edit_last','1'),(4597,125,'_wp_page_template','default'),(4598,125,'custom_header',''),(4599,125,'header_layout','1'),(4600,125,'custom_pagetitle','show'),(4601,125,'custom_title','Blog Grid'),(4602,125,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4603,125,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4604,125,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4605,125,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4606,125,'show_sidebar_page','1'),(4607,125,'sidebar_page_pos','left'),(4608,125,'custom_footer',''),(4609,125,'footer_layout_custom',''),(4610,125,'slide_template','default'),(4611,125,'_elementor_edit_mode','builder'),(4612,125,'_elementor_template_type','wp-page'),(4613,125,'_elementor_version','2.8.2'),(4614,125,'_elementor_data','[{\"id\":\"928f20f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"b1ac6d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c0262c\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(4615,125,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(4616,8191,'_menu_item_type','custom'),(4617,8191,'_menu_item_menu_item_parent','8188'),(4618,8191,'_menu_item_object_id','8191'),(4619,8191,'_menu_item_object','custom'),(4620,8191,'_menu_item_target',''),(4621,8191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4622,8191,'_menu_item_xfn',''),(4623,8191,'_menu_item_url','#'),(4624,8192,'_menu_item_type','custom'),(4625,8192,'_menu_item_menu_item_parent','0'),(4626,8192,'_menu_item_object_id','8192'),(4627,8192,'_menu_item_object','custom'),(4628,8192,'_menu_item_target',''),(4629,8192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4630,8192,'_menu_item_xfn',''),(4631,8192,'_menu_item_url','#'),(4632,8193,'_menu_item_type','custom'),(4633,8193,'_menu_item_menu_item_parent','0'),(4634,8193,'_menu_item_object_id','8193'),(4635,8193,'_menu_item_object','custom'),(4636,8193,'_menu_item_target',''),(4637,8193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4638,8193,'_menu_item_xfn',''),(4639,8193,'_menu_item_url','#section-home'),(4640,8194,'_menu_item_type','custom'),(4641,8194,'_menu_item_menu_item_parent','0'),(4642,8194,'_menu_item_object_id','8194'),(4643,8194,'_menu_item_object','custom'),(4644,8194,'_menu_item_target',''),(4645,8194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4646,8194,'_menu_item_xfn',''),(4647,8194,'_menu_item_url','#section-about'),(4648,8195,'_menu_item_type','custom'),(4649,8195,'_menu_item_menu_item_parent','0'),(4650,8195,'_menu_item_object_id','8195'),(4651,8195,'_menu_item_object','custom'),(4652,8195,'_menu_item_target',''),(4653,8195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4654,8195,'_menu_item_xfn',''),(4655,8195,'_menu_item_url','#section-services'),(4656,8196,'_menu_item_type','custom'),(4657,8196,'_menu_item_menu_item_parent','0'),(4658,8196,'_menu_item_object_id','8196'),(4659,8196,'_menu_item_object','custom'),(4660,8196,'_menu_item_target',''),(4661,8196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4662,8196,'_menu_item_xfn',''),(4663,8196,'_menu_item_url','#section-team'),(4664,8197,'_menu_item_type','custom'),(4665,8197,'_menu_item_menu_item_parent','0'),(4666,8197,'_menu_item_object_id','8197'),(4667,8197,'_menu_item_object','custom'),(4668,8197,'_menu_item_target',''),(4669,8197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4670,8197,'_menu_item_xfn',''),(4671,8197,'_menu_item_url','#section-blog'),(4672,8198,'_menu_item_type','custom'),(4673,8198,'_menu_item_menu_item_parent','0'),(4674,8198,'_menu_item_object_id','8198'),(4675,8198,'_menu_item_object','custom'),(4676,8198,'_menu_item_target',''),(4677,8198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4678,8198,'_menu_item_xfn',''),(4679,8198,'_menu_item_url','#section-contact'),(4680,8199,'_menu_item_type','custom'),(4681,8199,'_menu_item_menu_item_parent','0'),(4682,8199,'_menu_item_object_id','8199'),(4683,8199,'_menu_item_object','custom'),(4684,8199,'_menu_item_target',''),(4685,8199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4686,8199,'_menu_item_xfn',''),(4687,8199,'_menu_item_url','#section-testimonials'),(4688,127,'_edit_last','1'),(4689,127,'_wp_page_template','default'),(4690,127,'custom_header',''),(4691,127,'header_layout','1'),(4692,127,'custom_pagetitle','show'),(4693,127,'custom_title','Blog Grid'),(4694,127,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4695,127,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4696,127,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4697,127,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4698,127,'show_sidebar_page','1'),(4699,127,'sidebar_page_pos','right'),(4700,127,'custom_footer',''),(4701,127,'footer_layout_custom',''),(4702,127,'slide_template','default'),(4703,127,'_elementor_edit_mode','builder'),(4704,127,'_elementor_template_type','wp-page'),(4705,127,'_elementor_version','2.8.2'),(4706,127,'_elementor_data','[{\"id\":\"9549dba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"fba6296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"94a4695\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(4707,127,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(4708,129,'_edit_last','1'),(4709,129,'_wp_page_template','default'),(4710,129,'custom_header',''),(4711,129,'header_layout','1'),(4712,129,'custom_pagetitle','show'),(4713,129,'custom_title','Blog Grid'),(4714,129,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4715,129,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4716,129,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4717,129,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(4718,129,'show_sidebar_page',''),(4719,129,'sidebar_page_pos','right'),(4720,129,'custom_footer',''),(4721,129,'footer_layout_custom',''),(4722,129,'slide_template','default'),(4723,129,'_elementor_edit_mode','builder'),(4724,129,'_elementor_template_type','wp-page'),(4725,129,'_elementor_data','[{\"id\":\"fb04492\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3c5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1a14f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Our Service area\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f25fa3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d957c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df308c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"extended\"},\"elements\":[{\"id\":\"95c454c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b97f62b\",\"elType\":\"widget\",\"settings\":{\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"filter_alignment\":\"right\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef66b82\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4112df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30b600db\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4726,129,'_elementor_version','2.9.3'),(4727,129,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:10:\"ct_animate\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"filter_alignment\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4728,132,'_edit_last','1'),(4729,132,'_wp_page_template','default'),(4730,132,'_elementor_controls_usage','a:0:{}'),(4731,132,'custom_header',''),(4732,132,'header_layout','1'),(4733,132,'custom_pagetitle','themeoption'),(4734,132,'custom_title',''),(4735,132,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4736,132,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4737,132,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4738,132,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4739,132,'show_sidebar_page',''),(4740,132,'sidebar_page_pos','right'),(4741,132,'custom_footer',''),(4742,132,'footer_layout_custom',''),(4743,132,'slide_template','default'),(4744,134,'_edit_last','1'),(4745,134,'_wp_page_template','template-parts/blog-classic.php'),(4746,134,'_elementor_controls_usage','a:0:{}'),(4747,134,'custom_header',''),(4748,134,'header_layout','1'),(4749,134,'custom_pagetitle','show'),(4750,134,'custom_title','Blog Standard'),(4751,134,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4752,134,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4753,134,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4754,134,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4755,134,'show_sidebar_page','1'),(4756,134,'sidebar_page_pos','left'),(4757,134,'custom_footer',''),(4758,134,'footer_layout_custom',''),(4759,134,'slide_template','default'),(4760,136,'_edit_last','1'),(4761,136,'_wp_page_template','template-parts/blog-classic.php'),(4762,136,'_elementor_controls_usage','a:0:{}'),(4763,136,'custom_header',''),(4764,136,'header_layout','1'),(4765,136,'custom_pagetitle','show'),(4766,136,'custom_title','Blog Standard'),(4767,136,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4768,136,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4769,136,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4770,136,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4771,136,'show_sidebar_page',''),(4772,136,'sidebar_page_pos','right'),(4773,136,'custom_footer',''),(4774,136,'footer_layout_custom',''),(4775,136,'slide_template','default'),(4776,362,'_edit_last','1'),(4777,362,'_wp_page_template','default'),(4778,362,'custom_header',''),(4779,362,'header_layout','1'),(4780,362,'custom_pagetitle','themeoption'),(4781,362,'custom_title',''),(4782,362,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/gallery-02.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1553\";s:6:\"height\";s:3:\"600\";s:5:\"width\";s:3:\"600\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/gallery-02-150x150.jpg\";}}'),(4783,362,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4784,362,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4785,362,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4786,362,'show_sidebar_page',''),(4787,362,'sidebar_page_pos','right'),(4788,362,'custom_footer',''),(4789,362,'footer_layout_custom',''),(4790,362,'slide_template','default'),(4791,362,'_elementor_edit_mode','builder'),(4792,362,'_elementor_template_type','wp-page'),(4793,362,'_elementor_version','2.7.5'),(4794,362,'_elementor_data','[{\"id\":\"2645f20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33d032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0f31e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"FAQ\",\"style\":\"st-line-top1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"89f4b61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80ad649\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2d4a6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"de3f4f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"605e76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"email\":\"info@consulio.com \",\"phone\":\"+123 (4567) 890\",\"address\":\"380 St Kilda Road, Melbourne VIC 3004, Australia\",\"icons\":[{\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7cf43ed\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"def76d5\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"35b4313\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b97b712\"}],\"btn_text\":\"Appionment\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_team_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0ab90\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2a9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5bc25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b73102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3d2e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b4a0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17e0426\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-skill\",\"library\":\"flaticon\"},\"title_text\":\"Expert team member\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"eaf1b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"faff530\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-setting-spanner\",\"library\":\"flaticon\"},\"title_text\":\"24\\/7 Customer support\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1927758b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aafda89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29260a70\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4795,362,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4796,362,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4797,362,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;}}}}s:15:\"ct_team_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_Content\";a:9:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:8:\"position\";i:1;s:5:\"email\";i:1;s:5:\"phone\";i:1;s:7:\"address\";i:1;s:5:\"icons\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4798,367,'_edit_last','1'),(4799,367,'_wp_page_template','default'),(4800,367,'custom_header',''),(4801,367,'header_layout','1'),(4802,367,'custom_pagetitle','show'),(4803,367,'custom_title',''),(4804,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(4805,367,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4806,367,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#e4eaee\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(228,234,238,1)\";}'),(4807,367,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4808,367,'show_sidebar_page',''),(4809,367,'sidebar_page_pos','right'),(4810,367,'custom_footer',''),(4811,367,'footer_layout_custom',''),(4812,367,'slide_template','default'),(4813,367,'_elementor_edit_mode','builder'),(4814,367,'_elementor_template_type','wp-page'),(4815,367,'_elementor_version','2.8.2'),(4816,367,'_elementor_data','[{\"id\":\"d23e4f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cb9323b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.75},\"elements\":[{\"id\":\"7f58838\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"daa1215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.25,\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cb6926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01c0a8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1695462\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b6c0336\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"802cda4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"cae1995\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"3804c9a\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"9cc7cf6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Carolyn Smith\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"45dd5f6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Pamela Johnson\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"5a0d1f7\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ed0847\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d04724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d8484a6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4817,367,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4818,367,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4819,367,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4820,407,'_edit_last','1'),(4821,407,'_wp_page_template','default'),(4822,407,'custom_header',''),(4823,407,'header_layout','1'),(4824,407,'custom_pagetitle','show'),(4825,407,'custom_title','Services'),(4826,407,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4827,407,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4828,407,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4829,407,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4830,407,'show_sidebar_page',''),(4831,407,'sidebar_page_pos','right'),(4832,407,'custom_footer',''),(4833,407,'footer_layout_custom',''),(4834,407,'slide_template','default'),(4835,407,'_elementor_edit_mode','builder'),(4836,407,'_elementor_template_type','wp-page'),(4837,407,'_elementor_version','2.9.7'),(4838,407,'_elementor_data','[{\"id\":\"f019bad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ce29c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"d3b6aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"877c444\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a619a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d640f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e2ce89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16d5b63\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_md\":\"2\",\"source\":[\"corporate|service-category\"],\"ct_animate\":\"wow fadeIn\",\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b5b5683\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4106b489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b8ee2df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4839,407,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4840,409,'_edit_last','1'),(4841,409,'_wp_page_template','default'),(4842,409,'custom_header',''),(4843,409,'header_layout','1'),(4844,409,'custom_pagetitle','show'),(4845,409,'custom_title','Services'),(4846,409,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4847,409,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4848,409,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4849,409,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4850,409,'show_sidebar_page',''),(4851,409,'sidebar_page_pos','right'),(4852,409,'custom_footer',''),(4853,409,'footer_layout_custom',''),(4854,409,'slide_template','default'),(4855,409,'_elementor_edit_mode','builder'),(4856,409,'_elementor_template_type','wp-page'),(4857,409,'_elementor_version','2.9.3'),(4858,409,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"law|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4859,409,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4860,415,'_edit_last','1'),(4861,415,'_wp_page_template','default'),(4862,415,'custom_header',''),(4863,415,'header_layout','1'),(4864,415,'custom_pagetitle','themeoption'),(4865,415,'custom_title',''),(4866,415,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4867,415,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4868,415,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4869,415,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(4870,415,'show_sidebar_page',''),(4871,415,'sidebar_page_pos','right'),(4872,415,'custom_footer',''),(4873,415,'footer_layout_custom',''),(4874,415,'slide_template','default'),(4875,415,'_elementor_edit_mode','builder'),(4876,415,'_elementor_template_type','wp-page'),(4877,415,'_elementor_data','[{\"id\":\"934d137\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b2993d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"d7e414a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"c5cb0c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255149c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"228c27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf73b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7856011\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dc1332\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7156578d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"782c88ec\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4878,415,'_elementor_version','2.8.2'),(4879,415,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4880,417,'_edit_last','1'),(4881,417,'_wp_page_template','default'),(4882,417,'custom_header',''),(4883,417,'header_layout','1'),(4884,417,'custom_pagetitle','themeoption'),(4885,417,'custom_title',''),(4886,417,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4887,417,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4888,417,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4889,417,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(4890,417,'show_sidebar_page',''),(4891,417,'sidebar_page_pos','right'),(4892,417,'custom_footer',''),(4893,417,'footer_layout_custom',''),(4894,417,'slide_template','default'),(4895,417,'_elementor_edit_mode','builder'),(4896,417,'_elementor_template_type','wp-page'),(4897,417,'_elementor_version','2.8.2'),(4898,417,'_elementor_data','[{\"id\":\"480e3e3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29909522\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"3a5a486b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2047a9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c91bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"437e1689\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"17\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2cfad8b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52e98c5\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"layout\":\"2\",\"limit\":5,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ed166d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c7084ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"185e01e3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4899,417,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:10:\"ct_animate\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(4900,748,'_elementor_controls_usage','a:0:{}'),(4901,749,'_elementor_controls_usage','a:0:{}'),(4902,750,'_elementor_controls_usage','a:0:{}'),(4903,751,'_elementor_controls_usage','a:0:{}'),(4904,783,'_edit_last','1'),(4905,783,'_wp_page_template','default'),(4906,783,'_elementor_controls_usage','a:0:{}'),(4907,783,'custom_header',''),(4908,783,'header_layout','1'),(4909,783,'custom_pagetitle','themeoption'),(4910,783,'custom_title',''),(4911,783,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4912,783,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4913,783,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4914,783,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4915,783,'show_sidebar_page',''),(4916,783,'sidebar_page_pos','right'),(4917,783,'custom_footer',''),(4918,783,'footer_layout_custom',''),(4919,783,'slide_template','default'),(4920,1972,'_edit_last','1'),(4921,1972,'_wp_page_template','default'),(4922,1972,'custom_header',''),(4923,1972,'header_layout','1'),(4924,1972,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4925,1972,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4926,1972,'custom_pagetitle','show'),(4927,1972,'custom_title',''),(4928,1972,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-03.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1532\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-03-150x150.jpg\";}}'),(4929,1972,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4930,1972,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4931,1972,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4932,1972,'show_sidebar_page',''),(4933,1972,'sidebar_page_pos','right'),(4934,1972,'custom_footer',''),(4935,1972,'footer_layout_custom',''),(4936,1972,'slide_template','default'),(4937,1972,'_elementor_edit_mode','builder'),(4938,1972,'_elementor_template_type','wp-page'),(4939,1972,'_elementor_version','2.8.2'),(4940,1972,'_elementor_data','[{\"id\":\"68c872\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"61\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"553856d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b6cccf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From startups to Fortune 500s, WayUp offers the best internships and jobs.\",\"sub_title\":\"Career\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7bfd02a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec2a151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f8a622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"ea0c095\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7bf4992\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Digital Designer\",\"btn_text\":\"Apply now fds\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"e535d05\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-envato.png\",\"id\":1990},\"title\":\"Graphic Artist\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"4ad9249\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-themeforest.png\",\"id\":1991},\"title\":\"Sales Reporter\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"0bfca0b\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-codecanyon.png\",\"id\":1989},\"title\":\"Digital Marketer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"cddfe0a\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Web Designer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"24295dc\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/icon-career.png\",\"id\":1988},\"title\":\"Web Developer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"be4c6df\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_career_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"380c36d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"610f6d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379456c7\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4941,1972,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:14:\"ct_career_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(4942,2269,'_edit_last','1'),(4943,2269,'_wp_page_template','default'),(4944,2269,'custom_header','0'),(4945,2269,'header_layout','2'),(4946,2269,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4947,2269,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4948,2269,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(4949,2269,'custom_pagetitle','themeoption'),(4950,2269,'custom_title',''),(4951,2269,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4952,2269,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(4953,2269,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(4954,2269,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(4955,2269,'show_sidebar_page',''),(4956,2269,'sidebar_page_pos','right'),(4957,2269,'custom_footer','0'),(4958,2269,'footer_layout_custom',''),(4959,2269,'slide_template','default'),(4960,2269,'_elementor_edit_mode','builder'),(4961,2269,'_elementor_template_type','wp-page'),(4962,2269,'_elementor_version','2.9.3'),(4963,2269,'_elementor_data','[{\"id\":\"3770f102\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"364d1073\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"544239aa\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Finance\",\"shortcode\":\"[rev_slider alias=\\\"finance\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c64da04\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#f5f3f3\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88a5daf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99},\"elements\":[{\"id\":\"3f8bba26\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"},{\"id\":\"53a5ea8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can also find our <a href=\\\"#\\\" class=\\\"link-underline\\\">Consultant Service<\\/a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a747091\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"261cbf0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"20e97492\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27f827a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71bd656e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31a20797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e1d086b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38da7403\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4df54e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"275dcd69\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins with connections between people.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"5a98ce9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"176899ec\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span sectors\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government, industry and global forums. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"3fe9281f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery model\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14a9e84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6abde327\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5db5ae11\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.85)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12dcc0f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b54a2aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"774cd4d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1a769387\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"67e213ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"617bae36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"332806ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"business|service-category\"],\"limit\":4,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"style\":\"style2\",\"layout\":\"3\",\"ct_animate\":\"wow lightSpeedIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea6b9bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"52\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cd0ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63723817\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble with the skills of task at hand. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a3f7619\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 25 years working for one of Australia\\u2019s most\\nrecognised and successful retailers purpose and inspired culture, where people work cohesively towards shared goals.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"022\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"234482b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"377da551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78e6a0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Active to work\",\"bar_color\":\"#d1651a\",\"description\":\"We do not believe in contracts\\ntherefore we do not have one. \\nWe are fully invested.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"3fa4fcd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21ce9356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Completed work\",\"percentage_value\":75,\"bar_color\":\"#d1651a\",\"description\":\"You will be fully satisfied, you\\nare under no obligation to continue with the services I provide.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"93ea274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a5f7f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/about-02.png\",\"id\":2046},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69fd9eed\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-02.png\",\"id\":2070},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0e0e0e\"},\"elements\":[{\"id\":\"751d081\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"98959c2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ff261f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"7baa1333\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something for evaluation or memory.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"6e3e1895\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55403599\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively\\nimpacted our clients and that they are happy to share their\\nexperience.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4357c297\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-10.jpg\",\"id\":2074},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"eba0dc9\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Kathleen Smith \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"a09cd4e\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Pamela Johnson \",\"position\":\"Leadership Group\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"5ce29fd\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Macquarie Telecom \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"53bc7b0\",\"sub_title\":\"\"}],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pause_on_hover\":\"true\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":1000},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35df438d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-03.png\",\"id\":2091},\"background_position\":\"bottom left\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdb89ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51b259f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f636e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"548ca755\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"da12eec\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"d8c2527\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5e4a690\"},{\"ac_title\":\"How can I consult with the consultant team?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"c7e6a44\"}],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"6f9ea628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21843550\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#edeff1\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"50\",\"bottom\":\"65\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"65\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb92f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5e0cea99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get a free quote here\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"163de2e5\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cb2b1f1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18312165\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bd3e570\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53},\"elements\":[{\"id\":\"2603f09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"style\":\"st-line-left1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4befb6d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"151f7883\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9836a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7cd7ecc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c45687c\",\"elType\":\"widget\",\"settings\":{\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e77fd44\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"3bc0a9d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"9ee3f6e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"7a295e1\"}],\"slides_to_show\":\"4\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"3\",\"col_xl\":\"4\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67dedac5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fcd0ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"4968aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_color\":\"#ffffff\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6497515c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fa9faad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"6ee56c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c68a807\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3cff6e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"20d432ae\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"23c69e92\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"705e3eb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"842be3a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"2d7dfe44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56535aa7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5a26d938\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"ba3bb53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"311bee62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"656dca81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a0ee215\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"72\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"622420c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"191b6b73\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a00de5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.94)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4983fe1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30920f22\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b22bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"56563d4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"13f563fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3567dd9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"707d8c2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"361413c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"a75ff28\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5c3a0137\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3bb51865\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"571c1c93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"2524e5ff\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"2166\",\"style_l1\":\"style3\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27ad81a8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56c1556c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order1\"},\"elements\":[{\"id\":\"68fa16a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-01.jpg\",\"id\":2173},\"title\":\"Best Business Award \\u201819\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"613fb2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-02.jpg\",\"id\":2174},\"title\":\"Family Business Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"53cb55ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-03.jpg\",\"id\":2175},\"title\":\"Excellence in Exporting\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false},{\"id\":\"163c94fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":57.99600000000000221689333557151257991790771484375,\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award.png\",\"id\":2180},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"37\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"css_classes\":\"order3\"},\"elements\":[{\"id\":\"12c3a0ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"We believe, the passion trying & skill can make a top-performing company. \",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3cd4e5d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-year.png\",\"id\":2179},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e34c46f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Awards We Got!\",\"title_tag\":\"h5\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6844b478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order2\"},\"elements\":[{\"id\":\"5d7fd13c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-04.jpg\",\"id\":2176},\"title\":\"Global Safety Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"150cbc8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-05.jpg\",\"id\":2177},\"title\":\"Sales Excellence Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"486993ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/award-06.jpg\",\"id\":2178},\"title\":\"Top Leading Global  Trade\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2df47be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fc868f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ef4969e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & more news from resource library.\",\"sub_title\":\"Pricing\",\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"537e3d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"561e65e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We would love to share a similar experience and how I\\nlearned some valuable lessons during a downturn.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1997081e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"183234bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ca697e\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35afcf2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c8c38a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14eada90\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4964,2269,'page_h_phone',''),(4965,2269,'page_h_time',''),(4966,2269,'loading_page','themeoption'),(4967,2269,'loading_type','style1'),(4968,2269,'page_back_totop','themeoption'),(4969,2269,'rs_page_bg_color','#ffffff'),(4970,2269,'_elementor_controls_usage','a:22:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:42;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:6:\"margin\";i:13;s:7:\"z_index\";i:1;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:33;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:26;s:15:\"stretch_section\";i:8;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:6;s:16:\"background_image\";i:6;s:19:\"background_position\";i:6;s:21:\"background_attachment\";i:3;s:15:\"background_size\";i:4;s:17:\"background_repeat\";i:3;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:4;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:14;s:7:\"padding\";i:21;s:14:\"padding_tablet\";i:8;s:14:\"padding_mobile\";i:3;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:11;s:20:\"typography_font_size\";i:10;s:27:\"typography_font_size_tablet\";i:9;s:22:\"typography_line_height\";i:10;s:29:\"typography_line_height_tablet\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:11;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:4;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:13;s:27:\"title_typography_typography\";i:12;s:26:\"title_typography_font_size\";i:9;s:33:\"title_typography_font_size_tablet\";i:12;s:28:\"title_typography_line_height\";i:9;s:35:\"title_typography_line_height_tablet\";i:9;s:18:\"title_space_bottom\";i:6;s:5:\"style\";i:10;s:10:\"ct_animate\";i:11;s:11:\"title_color\";i:6;s:9:\"title_tag\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:3;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_feature\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:2:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:5:\"style\";i:1;s:6:\"layout\";i:1;}}}}s:12:\"ct_piecharts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_piecharts\";a:5:{s:5:\"title\";i:2;s:9:\"bar_color\";i:2;s:11:\"description\";i:2;s:10:\"ct_animate\";i:2;s:16:\"percentage_value\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:2;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:14:\"pause_on_hover\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:2;s:10:\"ct_animate\";i:2;s:8:\"style_l1\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:8:\"infinite\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:8:\"bg_image\";i:4;s:4:\"size\";i:2;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:4;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:8:\"ct_award\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:6;s:5:\"title\";i:6;s:4:\"type\";i:6;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(5033,1738,'_edit_last','1'),(5034,1738,'_wp_page_template','default'),(5035,1738,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5036,1738,'portfolio_sub_title',''),(5037,1738,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5038,1738,'slide_template','default'),(5039,1738,'_wp_old_date','2019-12-03'),(5040,1738,'_thumbnail_id','1543'),(5041,1738,'_elementor_edit_mode','builder'),(5042,1738,'_elementor_template_type','wp-post'),(5043,1738,'_elementor_version','2.7.5'),(5044,1738,'_elementor_data','[{\"id\":\"4cc8a858\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a9bf111\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dacb188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"29c0a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ccba79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"364c6a73\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"121febed\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd74cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33db605f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ad1e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consumer Products\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"588e191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356281be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4caa3bf3\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d2447a2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ae03e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34a7476f\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5045,1740,'_edit_last','1'),(5046,1740,'_wp_page_template','default'),(5047,1740,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5048,1740,'portfolio_sub_title',''),(5049,1740,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5050,1740,'slide_template','default'),(5051,1740,'_wp_old_date','2019-12-03'),(5052,1740,'_thumbnail_id','1542'),(5053,1740,'_elementor_edit_mode','builder'),(5054,1740,'_elementor_template_type','wp-post'),(5055,1740,'_elementor_version','2.7.5'),(5056,1740,'_elementor_data','[{\"id\":\"43507583\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cf40545\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4c8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6d7538c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d10b19e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32acc966\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a4ca7b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"700a2a24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e4e5ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68b48f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68c26d42\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccdfb2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31d7d807\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f447e11\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"432e9342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69919d4b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5057,1766,'_edit_last','1'),(5058,1766,'_thumbnail_id','1537'),(5059,1766,'_wp_page_template','default'),(5060,1766,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5061,1766,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5062,1766,'slide_template',''),(5063,1766,'_wp_old_date','2019-12-03'),(5064,1766,'_elementor_edit_mode','builder'),(5065,1766,'_elementor_template_type','wp-post'),(5066,1766,'_elementor_version','2.7.5'),(5067,1766,'_elementor_data','[{\"id\":\"5bba157\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bbc1efb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d608d10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"58fafd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d5571d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5988917e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fc73221\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3caff8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5f41740e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"288149d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"StartUp Business\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78cd2015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fb53d40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3c379\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25631488\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59578091\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a06c1f7\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5100,3497,'_edit_last','1'),(5101,3497,'_wp_page_template','default'),(5102,3497,'custom_header','1'),(5103,3497,'header_layout','2'),(5104,3497,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5105,3497,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5106,3497,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5107,3497,'page_h_phone',''),(5108,3497,'page_h_time',''),(5109,3497,'custom_pagetitle','show'),(5110,3497,'custom_title','Testimonials'),(5111,3497,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5112,3497,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5113,3497,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5114,3497,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5115,3497,'show_sidebar_page',''),(5116,3497,'sidebar_page_pos','right'),(5117,3497,'loading_page','themeoption'),(5118,3497,'loading_type','style1'),(5119,3497,'loading_color',''),(5120,3497,'custom_footer','0'),(5121,3497,'footer_layout_custom',''),(5122,3497,'page_back_totop','themeoption'),(5123,3497,'slide_template','default'),(5124,3497,'_elementor_edit_mode','builder'),(5125,3497,'_elementor_template_type','wp-page'),(5126,3497,'_elementor_version','2.8.5'),(5127,3497,'_elementor_data','[{\"id\":\"c89f3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2687c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3010a357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"37\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e1e7a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d328236\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734d13ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b96728d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e1f2d9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"195eecf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"cd84e60\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b63d25b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"525775b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"1b90e55\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b6453f9\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"8a6d9b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50718662\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"320475e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"79a188fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1ca7ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c91988f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"58f371a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"512dec0\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a02cad5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"102df0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc1ab47\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4780c367\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17cd84b8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5128,3497,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;s:11:\"title_color\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:11:\"btn_padding\";i:2;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:2;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5129,3497,'p_page_title_color',''),(5130,3497,'ptitle_overlay','themeoption'),(5131,3497,'rs_page_bg_color','#ffffff'),(5132,3500,'_edit_last','1'),(5133,3500,'_wp_page_template','default'),(5134,3500,'custom_header','1'),(5135,3500,'header_layout','2'),(5136,3500,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5137,3500,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5138,3500,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5139,3500,'page_h_phone',''),(5140,3500,'page_h_time',''),(5141,3500,'custom_pagetitle','show'),(5142,3500,'custom_title','Testimonials'),(5143,3500,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5144,3500,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5145,3500,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5146,3500,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5147,3500,'show_sidebar_page',''),(5148,3500,'sidebar_page_pos','right'),(5149,3500,'loading_page','themeoption'),(5150,3500,'loading_type','style1'),(5151,3500,'loading_color',''),(5152,3500,'custom_footer','0'),(5153,3500,'footer_layout_custom',''),(5154,3500,'page_back_totop','themeoption'),(5155,3500,'slide_template','default'),(5156,3500,'_elementor_edit_mode','builder'),(5157,3500,'_elementor_template_type','wp-page'),(5158,3500,'_elementor_version','2.8.5'),(5159,3500,'_elementor_data','[{\"id\":\"37b0d9e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e28c4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7dfaa5c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219b9a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ba6390\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"50757a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad2eb45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ba640c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"7b31aa02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16c849ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"760b3a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39e31d8c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5160,3500,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5161,3500,'p_page_title_color',''),(5162,3500,'ptitle_overlay','themeoption'),(5163,3500,'rs_page_bg_color','#ffffff'),(5164,3502,'_edit_last','1'),(5165,3502,'_wp_page_template','default'),(5166,3502,'custom_header','1'),(5167,3502,'header_layout','24'),(5168,3502,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5169,3502,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5170,3502,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5171,3502,'page_h_phone',''),(5172,3502,'page_h_time',''),(5173,3502,'custom_pagetitle','hide'),(5174,3502,'custom_title','Testimonials'),(5175,3502,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5176,3502,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(5177,3502,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5178,3502,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5179,3502,'show_sidebar_page',''),(5180,3502,'sidebar_page_pos','right'),(5181,3502,'loading_page','themeoption'),(5182,3502,'loading_type','style1'),(5183,3502,'loading_color',''),(5184,3502,'custom_footer','0'),(5185,3502,'footer_layout_custom',''),(5186,3502,'page_back_totop','themeoption'),(5188,3502,'_elementor_edit_mode','builder'),(5189,3502,'_elementor_template_type','wp-page'),(5190,3502,'_elementor_version','3.5.3'),(5191,3502,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5192,3502,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5193,3502,'p_page_title_color',''),(5194,3502,'ptitle_overlay','themeoption'),(5196,3504,'_edit_last','1'),(5197,3504,'_wp_page_template','default'),(5198,3504,'custom_header','1'),(5199,3504,'header_layout','6'),(5200,3504,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5201,3504,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5202,3504,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5203,3504,'page_h_phone','(210) 123-451'),(5204,3504,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(5205,3504,'custom_pagetitle','show'),(5206,3504,'custom_title','Pricing'),(5207,3504,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(5208,3504,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(5209,3504,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#faf7f0\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(250,247,240,1)\";}'),(5210,3504,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5211,3504,'show_sidebar_page',''),(5212,3504,'sidebar_page_pos','right'),(5213,3504,'loading_page','themeoption'),(5214,3504,'loading_type','style1'),(5215,3504,'loading_color',''),(5216,3504,'custom_footer','0'),(5217,3504,'footer_layout_custom',''),(5218,3504,'page_back_totop','themeoption'),(5219,3504,'slide_template','default'),(5220,3504,'_elementor_edit_mode','builder'),(5221,3504,'_elementor_template_type','wp-page'),(5222,3504,'_elementor_version','2.8.5'),(5223,3504,'_elementor_data','[{\"id\":\"729d3801\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"722c279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"198f4d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"sub_title\":\"Pricing\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"700\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"style\":\"st-line-left3\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6ddd7a0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab9c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\\nbusiness\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3cf44a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2b5a8902\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d4608fc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8e4982\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"35533b12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e67feab\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5224,3504,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:5:\"style\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5225,3504,'p_page_title_color',''),(5226,3504,'ptitle_overlay','themeoption'),(5227,3504,'rs_page_bg_color','#ffffff'),(5228,3506,'_edit_last','1'),(5229,3506,'_wp_page_template','default'),(5230,3506,'_elementor_controls_usage','a:0:{}'),(5231,3506,'custom_header',''),(5232,3506,'header_layout','1'),(5233,3506,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5234,3506,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5235,3506,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5236,3506,'page_h_phone',''),(5237,3506,'page_h_time',''),(5238,3506,'custom_pagetitle','themeoption'),(5239,3506,'custom_title',''),(5240,3506,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5241,3506,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5242,3506,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5243,3506,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5244,3506,'show_sidebar_page',''),(5245,3506,'sidebar_page_pos','right'),(5246,3506,'loading_page','themeoption'),(5247,3506,'loading_type','style1'),(5248,3506,'loading_color',''),(5249,3506,'custom_footer',''),(5250,3506,'footer_layout_custom',''),(5251,3506,'page_back_totop','themeoption'),(5252,3506,'slide_template','default'),(5253,3508,'_edit_last','1'),(5254,3508,'_wp_page_template','default'),(5255,3508,'_elementor_controls_usage','a:0:{}'),(5256,3508,'custom_header',''),(5257,3508,'header_layout','1'),(5258,3508,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5259,3508,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5260,3508,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5261,3508,'page_h_phone',''),(5262,3508,'page_h_time',''),(5263,3508,'custom_pagetitle','themeoption'),(5264,3508,'custom_title',''),(5265,3508,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5266,3508,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5267,3508,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5268,3508,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5269,3508,'show_sidebar_page',''),(5270,3508,'sidebar_page_pos','right'),(5271,3508,'loading_page','themeoption'),(5272,3508,'loading_type','style1'),(5273,3508,'loading_color',''),(5274,3508,'custom_footer',''),(5275,3508,'footer_layout_custom',''),(5276,3508,'page_back_totop','themeoption'),(5277,3508,'slide_template','default'),(5339,3514,'_edit_last','1'),(5340,3514,'_wp_page_template','default'),(5341,3514,'custom_header','1'),(5342,3514,'header_layout','24'),(5343,3514,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5344,3514,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5345,3514,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5346,3514,'page_h_phone',''),(5347,3514,'page_h_time',''),(5348,3514,'custom_pagetitle','hide'),(5349,3514,'custom_title','Contact'),(5350,3514,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5351,3514,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(5352,3514,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5353,3514,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5354,3514,'show_sidebar_page',''),(5355,3514,'sidebar_page_pos','right'),(5356,3514,'loading_page','themeoption'),(5357,3514,'loading_type','style1'),(5358,3514,'loading_color',''),(5359,3514,'custom_footer','0'),(5360,3514,'footer_layout_custom',''),(5361,3514,'page_back_totop','themeoption'),(5363,3514,'_elementor_edit_mode','builder'),(5364,3514,'_elementor_template_type','wp-page'),(5365,3514,'_elementor_version','3.5.3');
INSERT INTO `wp_postmeta` VALUES (5366,3514,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\",\"id\":8884,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5367,3514,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5368,3514,'p_page_title_color',''),(5369,3514,'ptitle_overlay','themeoption'),(5371,3516,'_edit_last','1'),(5372,3516,'_wp_page_template','default'),(5373,3516,'custom_header','1'),(5374,3516,'header_layout','6'),(5375,3516,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5376,3516,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5377,3516,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5378,3516,'page_h_phone','(210) 123-451'),(5379,3516,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(5380,3516,'custom_pagetitle','show'),(5381,3516,'custom_title','Team'),(5382,3516,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5383,3516,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(5384,3516,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5385,3516,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5386,3516,'show_sidebar_page',''),(5387,3516,'sidebar_page_pos','right'),(5388,3516,'loading_page','themeoption'),(5389,3516,'loading_type','style1'),(5390,3516,'loading_color',''),(5391,3516,'custom_footer','0'),(5392,3516,'footer_layout_custom',''),(5393,3516,'page_back_totop','themeoption'),(5394,3516,'slide_template','default'),(5395,3516,'_elementor_edit_mode','builder'),(5396,3516,'_elementor_template_type','wp-page'),(5397,3516,'_elementor_version','2.8.5'),(5398,3516,'_elementor_data','[{\"id\":\"de32beb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"02fe18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50aea1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team members\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da4fc80\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"4e903ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18766663\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f3225e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37234e60\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5399,3516,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5400,3516,'p_page_title_color',''),(5401,3516,'ptitle_overlay','themeoption'),(5402,3516,'rs_page_bg_color','#ffffff'),(5403,3518,'_edit_last','1'),(5404,3518,'_wp_page_template','default'),(5405,3518,'custom_header','1'),(5406,3518,'header_layout','6'),(5407,3518,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5408,3518,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5409,3518,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5410,3518,'page_h_phone','(210) 123-451'),(5411,3518,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(5412,3518,'custom_pagetitle','show'),(5413,3518,'custom_title','Team'),(5414,3518,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(5415,3518,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"76px\";s:14:\"padding-bottom\";s:4:\"76px\";s:5:\"units\";s:2:\"px\";}'),(5416,3518,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5417,3518,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5418,3518,'show_sidebar_page',''),(5419,3518,'sidebar_page_pos','right'),(5420,3518,'loading_page','themeoption'),(5421,3518,'loading_type','style1'),(5422,3518,'loading_color',''),(5423,3518,'custom_footer','0'),(5424,3518,'footer_layout_custom',''),(5425,3518,'page_back_totop','themeoption'),(5426,3518,'slide_template','default'),(5427,3518,'_elementor_edit_mode','builder'),(5428,3518,'_elementor_template_type','wp-page'),(5429,3518,'_elementor_version','2.8.5'),(5430,3518,'_elementor_data','[{\"id\":\"447525ee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"86\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d46c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"239427c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We always work with a great team.\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"st-line-left3\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36cf3dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"58\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"77423db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#A8908F\"},\"elements\":[{\"id\":\"5b017e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5101bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"553ef78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11b392d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37ab8395\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6edd789c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28643b20\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"64260a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e4196fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"784d7355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6708c127\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5431,3518,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"ct_animate\";i:1;s:27:\"title_typography_typography\";i:1;s:5:\"style\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:13:\"content_list3\";i:2;}s:12:\"grid_section\";a:6:{s:14:\"thumbnail_size\";i:2;s:26:\"thumbnail_custom_dimension\";i:2;s:6:\"col_md\";i:2;s:6:\"col_lg\";i:2;s:6:\"col_xl\";i:2;s:10:\"ct_animate\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:17:\"btn_border_radius\";i:1;s:11:\"btn_padding\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5432,3518,'p_page_title_color',''),(5433,3518,'ptitle_overlay','themeoption'),(5434,3518,'rs_page_bg_color','#ffffff'),(5435,3520,'_edit_last','1'),(5436,3520,'_wp_page_template','default'),(5437,3520,'custom_header',''),(5438,3520,'header_layout','1'),(5439,3520,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5440,3520,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5441,3520,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5442,3520,'page_h_phone',''),(5443,3520,'page_h_time',''),(5444,3520,'custom_pagetitle','show'),(5445,3520,'custom_title','Team'),(5446,3520,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5447,3520,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5448,3520,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5449,3520,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5450,3520,'show_sidebar_page',''),(5451,3520,'sidebar_page_pos','right'),(5452,3520,'loading_page','themeoption'),(5453,3520,'loading_type','style1'),(5454,3520,'loading_color',''),(5455,3520,'custom_footer',''),(5456,3520,'footer_layout_custom',''),(5457,3520,'page_back_totop','themeoption'),(5458,3520,'slide_template','default'),(5459,3520,'_elementor_edit_mode','builder'),(5460,3520,'_elementor_template_type','wp-page'),(5461,3520,'_elementor_version','2.8.5'),(5462,3520,'_elementor_data','[{\"id\":\"8c17192\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E4EAEE\",\"padding\":{\"unit\":\"px\",\"top\":\"060\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a445675\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94d2f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cb3f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"5e7c953\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"cfdc757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"828f9d3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8a0a04a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"sfdsdaf\",\"position\":\"\",\"desc\":\"\",\"social\":\"[]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90df330\"}],\"content_list4\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"be8b76d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7516d24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"505cae5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"a352cd2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b8baca1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9c4e5eb\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"14f1627\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b719730\"}],\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"267\",\"height\":\"352\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"1d25b5be\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5463,3520,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:13:\"content_list3\";i:1;s:13:\"content_list4\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(5464,4355,'_edit_last','1'),(5465,4355,'_wp_page_template','default'),(5466,4355,'custom_header',''),(5467,4355,'header_layout','13'),(5468,4355,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5469,4355,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5470,4355,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5471,4355,'page_h_phone',''),(5472,4355,'page_h_time',''),(5473,4355,'custom_pagetitle','themeoption'),(5474,4355,'custom_title',''),(5475,4355,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5476,4355,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5477,4355,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5478,4355,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5479,4355,'show_sidebar_page',''),(5480,4355,'sidebar_page_pos','right'),(5481,4355,'loading_page','themeoption'),(5482,4355,'loading_type','style1'),(5483,4355,'custom_footer',''),(5484,4355,'footer_layout_custom',''),(5485,4355,'page_back_totop','themeoption'),(5486,4355,'slide_template','default'),(5487,4355,'rs_page_bg_color','#ffffff'),(5488,4355,'_elementor_edit_mode','builder'),(5489,4355,'_elementor_template_type','wp-page'),(5490,4355,'_elementor_version','2.9.7'),(5491,4355,'_elementor_data','[{\"id\":\"314139d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c75a3f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"9ed55c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3aaa0285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17375fff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df27a3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c0a81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30af93e9\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4585a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dfe8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"36452bba\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5492,4355,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5493,4357,'_edit_last','1'),(5494,4357,'_wp_page_template','default'),(5495,4357,'custom_header',''),(5496,4357,'header_layout','13'),(5497,4357,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5498,4357,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5499,4357,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5500,4357,'page_h_phone',''),(5501,4357,'page_h_time',''),(5502,4357,'custom_pagetitle','themeoption'),(5503,4357,'custom_title',''),(5504,4357,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5505,4357,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5506,4357,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5507,4357,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5508,4357,'show_sidebar_page',''),(5509,4357,'sidebar_page_pos','right'),(5510,4357,'loading_page','themeoption'),(5511,4357,'loading_type','style1'),(5512,4357,'custom_footer',''),(5513,4357,'footer_layout_custom',''),(5514,4357,'page_back_totop','themeoption'),(5515,4357,'slide_template','default'),(5516,4357,'rs_page_bg_color','#ffffff'),(5517,4357,'_elementor_edit_mode','builder'),(5518,4357,'_elementor_template_type','wp-page'),(5519,4357,'_elementor_version','2.9.7'),(5520,4357,'_elementor_data','[{\"id\":\"3a25e46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17ca4b39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1d2e5174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"752fb011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1de1c123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"618920ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56e33978\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"267e41cb\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba4bd3a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199e3145\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62540a03\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5521,4357,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5522,4359,'_edit_last','1'),(5523,4359,'_wp_page_template','default'),(5524,4359,'custom_header',''),(5525,4359,'header_layout','13'),(5526,4359,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5527,4359,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5528,4359,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(5529,4359,'page_h_phone',''),(5530,4359,'page_h_time',''),(5531,4359,'custom_pagetitle','themeoption'),(5532,4359,'custom_title',''),(5533,4359,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5534,4359,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5535,4359,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5536,4359,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(5537,4359,'show_sidebar_page',''),(5538,4359,'sidebar_page_pos','right'),(5539,4359,'loading_page','themeoption'),(5540,4359,'loading_type','style1'),(5541,4359,'custom_footer',''),(5542,4359,'footer_layout_custom',''),(5543,4359,'page_back_totop','themeoption'),(5544,4359,'slide_template','default'),(5545,4359,'rs_page_bg_color','#ffffff'),(5546,4359,'_elementor_edit_mode','builder'),(5547,4359,'_elementor_template_type','wp-page'),(5548,4359,'_elementor_version','2.9.7'),(5549,4359,'_elementor_data','[{\"id\":\"5a6ca294\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cccd8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"64f9a477\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3f489776\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"508c91e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cbc083\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"75e7ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"36e3181f\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"306e1c5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c56cf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d632435\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5550,4359,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5551,5363,'_edit_last','1'),(5552,5363,'_wp_page_template','default'),(5553,5363,'custom_header','1'),(5554,5363,'header_layout','20'),(5555,5363,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5556,5363,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5557,5363,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(5558,5363,'page_h_phone',''),(5559,5363,'page_h_time',''),(5560,5363,'h_custom_menu','60'),(5561,5363,'h_custom_menu_left',''),(5562,5363,'h_custom_menu_right',''),(5563,5363,'custom_pagetitle','hide'),(5564,5363,'custom_title',''),(5565,5363,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5566,5363,'p_page_title_color',''),(5567,5363,'ptitle_overlay','themeoption'),(5568,5363,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(5569,5363,'ptitle_breadcrumb_page','themeoption'),(5570,5363,'ptitle_breadcrumb_color',''),(5571,5363,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(5572,5363,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5573,5363,'show_sidebar_page',''),(5574,5363,'sidebar_page_pos','right'),(5575,5363,'loading_page','themeoption'),(5576,5363,'loading_type','style1'),(5577,5363,'custom_footer',''),(5578,5363,'footer_layout_custom',''),(5579,5363,'page_back_totop','themeoption'),(5580,5363,'_elementor_edit_mode','builder'),(5581,5363,'_elementor_template_type','wp-page'),(5582,5363,'_elementor_version','2.9.14'),(5583,5363,'_elementor_data','[{\"id\":\"7cdc5287\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#08A4A4\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-banner1.png\",\"id\":5177},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"639bd0f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.832999999999998408384271897375583648681640625,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"22417d6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_color\":\"#161B39\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"200\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47105a3d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We have uncovered the five essential elements to maximizing its value.\",\"text_color\":\"#161B39\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"68ec451d\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-effect\",\"text\":\"Get Started\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"btn_bg_color\":\"#161B39\",\"btn_bg_color_hover\":\"#FFFFFF\",\"btn_color_hover\":\"#161B39\",\"_css_classes\":\"rm-box-shadow\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"500\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"2830857f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417000000000001591615728102624416351318359375,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6a44dcb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/man1.png\",\"id\":5181},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false},{\"id\":\"4b17637d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":11.4139999999999997015720509807579219341278076171875,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d9ddcff\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":15,\"title\":\"Team member\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32dce8ea\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":102,\"title\":\"Active <br\\/>cases\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"7f54c905\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":105,\"title\":\"Client\\u2019s reviews\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3313d52b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"730e9f4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4173f80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our <b>platform<\\/b> connects companies with displaced <b>workforces<\\/b>\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Services\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"221bc798\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"num_words\":15,\"col_lg\":\"4\",\"col_xl\":\"6\",\"dots\":\"true\",\"infinite\":\"true\",\"limit\":9,\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c2b41c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"62a1b9ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57f5dc7a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5335ddc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d275cb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"64d7a986\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"2351f82e\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"30278905\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44c32d70\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"10e69e85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3512acb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"14ed3c3a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac8431e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"6be03aaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"620f417e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3f9cb221\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"35761c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5a8ad8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"sub_title\":\"\",\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"sub_title\":\"\",\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"sub_title\":\"\",\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf3c1df\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"490f6167\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dc91b0b\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41cbc67e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"5f6f2204\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"127a5605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1e3c7d0c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b7ebf9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"270739a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c65e5e9\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6aea65f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"592663d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20cffbc4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4aafe66b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1583f3f4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"652b0f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1d52d700\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"40f9ba94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(5584,5363,'_elementor_controls_usage','a:17:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:10:{s:5:\"title\";i:6;s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:18:\"title_space_bottom\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:5;s:15:\"sub_title_color\";i:5;s:31:\"sub_title_typography_typography\";i:5;s:32:\"sub_title_typography_font_family\";i:5;s:30:\"sub_title_typography_font_size\";i:5;s:32:\"sub_title_typography_font_weight\";i:5;s:35:\"sub_title_typography_letter_spacing\";i:5;s:22:\"sub_title_space_bottom\";i:5;s:14:\"sub_title_line\";i:5;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:6;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:14:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:12:\"btn_bg_color\";i:1;s:18:\"btn_bg_color_hover\";i:1;s:15:\"btn_color_hover\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:15;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:4;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:2;s:11:\"image_align\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:1;s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:5:{s:12:\"number_color\";i:3;s:28:\"number_typography_typography\";i:3;s:27:\"number_typography_font_size\";i:3;s:29:\"number_typography_font_weight\";i:3;s:19:\"number_space_bottom\";i:3;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:3;s:27:\"typography_title_typography\";i:3;s:28:\"typography_title_font_family\";i:3;s:26:\"typography_title_font_size\";i:3;s:28:\"typography_title_font_weight\";i:3;s:28:\"typography_title_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:3;s:3:\"gap\";i:10;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:11:\"_element_id\";i:7;s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:6:{s:5:\"image\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;s:11:\"video_title\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}s:13:\"section_style\";a:15:{s:5:\"style\";i:2;s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_line_height\";i:2;s:10:\"desc_color\";i:2;s:26:\"desc_typography_typography\";i:2;s:25:\"desc_typography_font_size\";i:2;s:27:\"desc_typography_line_height\";i:2;s:18:\"title_space_bottom\";i:2;s:14:\"icon_font_size\";i:2;s:16:\"icon_space_right\";i:2;s:14:\"icon_space_top\";i:2;s:10:\"ct_animate\";i:2;s:16:\"ct_animate_delay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:5:\"style\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:7:{s:5:\"style\";i:1;s:9:\"sub_title\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:11:\"email_label\";i:1;s:12:\"image_bg_box\";i:1;s:9:\"image_box\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:5:{s:4:\"team\";i:1;s:5:\"team2\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"team7\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:5:\"title\";i:1;s:10:\"image_left\";i:1;s:11:\"image_right\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;}s:14:\"source_section\";a:1:{s:8:\"style_l7\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:13:\"ct_google_map\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:10:\"markericon\";i:1;s:5:\"style\";i:1;s:7:\"content\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}}}}'),(5684,569,'_edit_last','1'),(5685,569,'slide_template','default'),(5686,569,'portfolio_sub_title','Plan Estimations'),(5687,569,'_wp_page_template','default'),(5688,569,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5689,569,'_elementor_edit_mode','builder'),(5690,569,'_elementor_template_type','wp-post'),(5691,569,'_elementor_version','2.7.5'),(5692,569,'_elementor_data','[{\"id\":\"1ef46e13\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"767baefc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20c4bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4d2f320e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b770116\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"100163c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67225c89\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"411b8936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b8bdd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bf80737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fund Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"65162c9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed4b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f51c582\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46012a39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6cb5cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64fa3143\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5693,569,'_wp_old_slug','rupayan-taj'),(5694,569,'_thumbnail_id','1541'),(5695,569,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5696,571,'_edit_last','1'),(5697,571,'slide_template','default'),(5698,571,'portfolio_sub_title','Exterior Design'),(5699,571,'_wp_page_template','default'),(5700,571,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5701,571,'_elementor_edit_mode','builder'),(5702,571,'_elementor_template_type','wp-post'),(5703,571,'_elementor_version','2.7.5'),(5704,571,'_elementor_data','[{\"id\":\"277bf312\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc56f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"624674ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"340c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c9ecac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51426840\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67eae2ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"303d0652\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"141dc37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb2aea0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"141fe9f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"747aff36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e895bd\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10eb7f3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"efe11f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ac9c126\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5705,571,'_wp_old_slug','razia-tower'),(5706,571,'_thumbnail_id','1538'),(5707,571,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5708,573,'_edit_last','1'),(5709,573,'slide_template','default'),(5710,573,'portfolio_sub_title','Plan Certification'),(5711,573,'_wp_page_template','default'),(5712,573,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5713,573,'_elementor_edit_mode','builder'),(5714,573,'_elementor_template_type','wp-post'),(5715,573,'_elementor_version','2.7.5'),(5716,573,'_elementor_data','[{\"id\":\"57ce9589\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b35ef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6681b63f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"391d5678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"391b9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b45b4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31b2a3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72434400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"335ce718\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"645505c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market Expansion\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68730ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9e6a449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678da7c9\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"476936cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"41c2b24b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5717,573,'_wp_old_slug','fr-tower'),(5718,573,'_thumbnail_id','1536'),(5719,573,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5720,575,'_edit_last','1'),(5721,575,'slide_template',''),(5722,575,'portfolio_sub_title','Property Sketching'),(5723,575,'_wp_page_template','default'),(5724,575,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5725,575,'_elementor_edit_mode','builder'),(5726,575,'_elementor_template_type','wp-post'),(5727,575,'_elementor_version','2.7.5'),(5728,575,'_elementor_data','[{\"id\":\"1f47c785\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"795b4afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d7a8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"273c1c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"41bca8c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1485b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e67225\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c35b751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-06.jpg\",\"id\":1535},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ac734f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1819ba63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revenue Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36279b37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220d351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d838b\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4093c7be\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43083958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c0c4bc5\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5729,575,'_wp_old_slug','rio-villa'),(5730,575,'_thumbnail_id','4805'),(5731,575,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5732,575,'custom_pagetitle','themeoption'),(5733,575,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5734,575,'p_page_title_color',''),(5735,575,'ptitle_overlay','themeoption'),(5736,575,'ptitle_breadcrumb','themeoption'),(5737,575,'rs_page_bg_color',''),(5738,577,'_edit_last','1'),(5739,577,'slide_template','default'),(5740,577,'portfolio_sub_title','Material Supply'),(5741,577,'_wp_page_template','default'),(5742,577,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5743,577,'_elementor_edit_mode','builder'),(5744,577,'_elementor_template_type','wp-post'),(5745,577,'_elementor_data','[{\"id\":\"1dfbc5d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a482228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab965a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7f52b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b8ece51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70d2235d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbed3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"925f00f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43c59fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5573d38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Court Imperial\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"187f95bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a74858\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fb27f40\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afe2c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11319ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"92f0806\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5746,577,'_elementor_version','2.7.5'),(5747,577,'_thumbnail_id','1534'),(5748,577,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5749,579,'_edit_last','1'),(5750,579,'slide_template',''),(5751,579,'post_views_count','2'),(5752,579,'portfolio_sub_title','House Remodel'),(5753,579,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5754,579,'_elementor_edit_mode','builder'),(5755,579,'_elementor_template_type','wp-post'),(5756,579,'_elementor_version','2.7.5'),(5757,579,'_wp_page_template','default'),(5758,579,'_elementor_data','[{\"id\":\"5082f78d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b5819a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44d39aa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"19f72c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5514f494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"105945eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3b933b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66ab5385\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-04.jpg\",\"id\":1533},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2519c386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7890d411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a9d30b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb90524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a4abaa5\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2020\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.consultio.com\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64729566\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36235ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"302e5231\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5759,579,'_wp_old_slug','city-centre'),(5760,579,'_thumbnail_id','4804'),(5761,579,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5762,579,'custom_pagetitle','themeoption'),(5763,579,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5764,579,'p_page_title_color',''),(5765,579,'ptitle_overlay','themeoption'),(5766,579,'ptitle_breadcrumb','themeoption'),(5767,579,'rs_page_bg_color',''),(5768,579,'_wp_old_date','2019-11-16'),(5769,579,'_wp_old_date','2019-12-16'),(5770,581,'_edit_last','1'),(5771,581,'slide_template',''),(5772,581,'post_views_count','3'),(5773,581,'portfolio_sub_title','Plan Estimations'),(5774,581,'_wp_page_template','default'),(5775,581,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5776,581,'_elementor_edit_mode','builder'),(5777,581,'_elementor_template_type','wp-post'),(5778,581,'_elementor_version','2.7.5'),(5779,581,'_elementor_data','[{\"id\":\"fd2936\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d117fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6728f356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"37246f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"20294c52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ad3f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f2abeab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b712b50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-03.jpg\",\"id\":1532},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3abbf614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d31227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chan Agency\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30a0ede6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"334c2cd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"287cdf86\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f9eafa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74e7fa37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f015042\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5780,581,'_wp_old_slug','borak-mehnur'),(5781,581,'_thumbnail_id','1536'),(5782,581,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5783,581,'custom_pagetitle','themeoption'),(5784,581,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5785,581,'p_page_title_color',''),(5786,581,'ptitle_overlay','themeoption'),(5787,581,'ptitle_breadcrumb','themeoption'),(5788,581,'rs_page_bg_color',''),(5789,581,'ptitle_breadcrumb_page','themeoption'),(5790,583,'_edit_last','1'),(5791,583,'slide_template',''),(5792,583,'post_views_count','2'),(5793,583,'portfolio_sub_title','Interior Design'),(5794,583,'_wp_page_template','default'),(5795,583,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5796,583,'_elementor_edit_mode','builder'),(5797,583,'_elementor_template_type','wp-post'),(5798,583,'_elementor_version','2.7.5'),(5799,583,'_elementor_data','[{\"id\":\"15e9dfce\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"258e2d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e40afd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7388310\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"70ed0350\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48fe0bbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc9639d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"714b5cd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b03d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"260a630d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49a4ce28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35687c3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bb9e3ca\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a34e962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a68a8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f079b53\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5800,583,'_wp_old_slug','rf-tower'),(5801,583,'_thumbnail_id','1539'),(5802,583,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5803,583,'custom_pagetitle','themeoption'),(5804,583,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5805,583,'p_page_title_color',''),(5806,583,'ptitle_overlay','themeoption'),(5807,583,'ptitle_breadcrumb','themeoption'),(5808,583,'rs_page_bg_color',''),(5809,583,'_wp_old_slug','digital-analysis'),(5810,583,'ptitle_breadcrumb_page','themeoption'),(5811,583,'_wp_old_date','2019-11-13'),(5812,1742,'_edit_last','1'),(5813,1742,'_wp_page_template','default'),(5814,1742,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(5815,1742,'portfolio_sub_title',''),(5816,1742,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(5817,1742,'slide_template',''),(5818,1742,'_thumbnail_id','1538'),(5819,1742,'_elementor_edit_mode','builder'),(5820,1742,'_elementor_template_type','wp-post'),(5821,1742,'_elementor_version','2.7.5'),(5822,1742,'_elementor_data','[{\"id\":\"33631ddb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64d9501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1db4ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e9611ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2236e97b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"630f7823\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5851b0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21fe0299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"666172d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49eb497\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"29b73151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e998dc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f16b749\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a4e8bca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dc2cbfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fdb4fd3\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(5823,1742,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/02/h6-team4-150x150.jpg\";}}'),(5824,1742,'custom_pagetitle','themeoption'),(5825,1742,'ptitle_breadcrumb_on','hidden'),(5826,1742,'rs_page_bg_color',''),(5827,1742,'ptitle_breadcrumb','themeoption'),(5828,1742,'p_page_title_color',''),(5829,1742,'ptitle_overlay','themeoption'),(5830,1742,'ptitle_breadcrumb_page','themeoption'),(5831,8203,'_edit_last','1'),(5832,8203,'_wp_page_template','default'),(5833,8203,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(5834,8203,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5835,8203,'slide_template',''),(5836,8203,'service_icon',''),(5837,8203,'_elementor_edit_mode','builder'),(5838,8203,'_elementor_template_type','wp-post'),(5839,8203,'_elementor_version','2.7.5'),(5840,8203,'_elementor_data','[{\"id\":\"24b96b2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0a26a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"27e9d0b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7fdadd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3401c8e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b2f0a2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5ea1b3fd\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"72341ec9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d71e5a4\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d9823f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"525fdf55\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70fccaab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5038b12b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"692d161\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"9a76b64\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2841df09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"569f6d22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ebe579f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ebe53e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42d3dd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"26346a93\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5841,8203,'_thumbnail_id','4716'),(5842,8203,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5843,8203,'_wp_old_slug','metal-roofing'),(5844,8203,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5845,8203,'rs_page_bg_color',''),(5846,8203,'_wp_old_slug','market-research'),(5847,8203,'icon_type','image'),(5848,8203,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\";s:2:\"id\";s:4:\"5221\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"175\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2-150x150.png\";}'),(5849,8203,'_wp_old_date','2019-11-11'),(5850,8203,'_wp_old_date','2020-02-11'),(5851,8203,'_wp_old_slug','renters-insurance'),(5852,8203,'_wp_old_slug','fund-transfer'),(5853,8203,'custom_pagetitle','themeoption'),(5854,8203,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5855,8203,'p_page_title_color',''),(5856,8203,'ptitle_overlay','themeoption'),(5857,8203,'_wp_old_slug','audit-and-assurance-services'),(5858,8203,'_wp_old_slug','awesome-support'),(5859,8203,'_wp_old_slug','insurance-service'),(5860,8204,'_edit_last','1'),(5861,8204,'_wp_page_template','default'),(5862,8204,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(5863,8204,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5864,8204,'slide_template',''),(5865,8204,'service_icon',''),(5866,8204,'_elementor_edit_mode','builder'),(5867,8204,'_elementor_template_type','wp-post'),(5868,8204,'_elementor_version','2.7.5'),(5869,8204,'_elementor_data','[{\"id\":\"1b1cd0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c48a456\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a89488c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"b5349e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f53d85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233b1a0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"c8deb5e\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2fd822c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"d5c9c33\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6fed9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6dae33\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70afa14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"66112fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d15cfd\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"ab598c4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ca16fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1548059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1021f1b\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e0b2e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f7d0b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ad765c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5870,8204,'_thumbnail_id','4715'),(5871,8204,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5872,8204,'_wp_old_slug','interior-design'),(5873,8204,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5874,8204,'rs_page_bg_color',''),(5875,8204,'_wp_old_slug','seo-optimization'),(5876,8204,'icon_type','image'),(5877,8204,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\";s:2:\"id\";s:4:\"5220\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"176\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1-150x150.png\";}'),(5878,8204,'_wp_old_date','2019-11-11'),(5879,8204,'_wp_old_date','2020-02-11'),(5880,8204,'_wp_old_slug','business-insurance'),(5881,8204,'_wp_old_slug','tax-consulting'),(5882,8204,'custom_pagetitle','themeoption'),(5883,8204,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5884,8204,'p_page_title_color',''),(5885,8204,'ptitle_overlay','themeoption'),(5886,8204,'_wp_old_slug','tax-and-consultancy-services'),(5887,8204,'_wp_old_slug','business-planner'),(5888,8204,'_wp_old_slug','website-designing'),(5889,8205,'_edit_last','1'),(5890,8205,'_wp_page_template','default'),(5891,8205,'service_icon',''),(5892,8205,'service_except','As a web crawler expert, I help organi zations adjust to the expanding signig ficance of internet promoting.'),(5893,8205,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5894,8205,'slide_template',''),(5895,8205,'_elementor_edit_mode','builder'),(5896,8205,'_elementor_template_type','wp-post'),(5897,8205,'_elementor_version','2.7.5'),(5898,8205,'_elementor_data','[{\"id\":\"3a4a7b26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"915447d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"178ed7df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d350375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51b661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"15862e4f\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57b83fdc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4354465f\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2483f9f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd80012\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"eca4320\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a864c63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eb05a19\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6f3b3b88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"258fd3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3ad38e33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3057e303\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e2459bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e81477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"46098650\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5899,8205,'_thumbnail_id','4940'),(5900,8205,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5901,8205,'_wp_old_slug','general-contracting'),(5902,8205,'rs_page_bg_color',''),(5903,8205,'_wp_old_slug','chart-management'),(5904,8205,'icon_type','image'),(5905,8205,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\";s:2:\"id\";s:4:\"5221\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"175\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2-150x150.png\";}'),(5906,8205,'_wp_old_date','2019-11-13'),(5907,8205,'_wp_old_slug','flood-insurance'),(5908,8205,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5909,8205,'_wp_old_slug','leadership-work__trashed'),(5910,8205,'_wp_old_slug','leadership-work'),(5911,8205,'custom_pagetitle','themeoption'),(5912,8205,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5913,8205,'p_page_title_color',''),(5914,8205,'ptitle_overlay','themeoption'),(5915,8206,'_edit_last','1'),(5916,8206,'_wp_page_template','default'),(5917,8206,'service_icon',''),(5918,8206,'service_except','As a web crawler expert, I help organi zations adjust to the expanding signig ficance of internet promoting.'),(5919,8206,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5920,8206,'slide_template',''),(5921,8206,'_elementor_edit_mode','builder'),(5922,8206,'_elementor_template_type','wp-post'),(5923,8206,'_elementor_version','2.7.5'),(5924,8206,'_elementor_data','[{\"id\":\"6a53a81c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36346e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bc7d745\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"46d7f391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48fe5cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b982cce\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4e071452\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2504dd8d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"48fcf97\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"4e1963b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7409dc3d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5f1a36b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"156390c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59243e36\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5ecb93f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6299f06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b9da903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f548340\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eca01ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"304ec3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"976bc52\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5925,8206,'_thumbnail_id','1534'),(5926,8206,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5927,8206,'_wp_old_slug','house-renovation'),(5928,8206,'icon_type','image'),(5929,8206,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\";s:2:\"id\";s:4:\"5220\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"176\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1-150x150.png\";}'),(5930,8206,'rs_page_bg_color',''),(5931,8206,'_wp_old_slug','strategy'),(5932,8206,'_wp_old_date','2019-11-13'),(5933,8206,'_wp_old_slug','marriage-insurance'),(5934,8206,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5935,8206,'_wp_old_slug','legal-analytics__trashed'),(5936,8206,'_wp_old_slug','legal-analytics'),(5937,8206,'custom_pagetitle','themeoption'),(5938,8206,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5939,8206,'p_page_title_color',''),(5940,8206,'ptitle_overlay','themeoption'),(5941,8207,'_edit_last','1'),(5942,8207,'_wp_page_template','default'),(5943,8207,'service_icon',''),(5944,8207,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(5945,8207,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5946,8207,'slide_template',''),(5947,8207,'_elementor_edit_mode','builder'),(5948,8207,'_elementor_template_type','wp-post'),(5949,8207,'_elementor_version','2.7.5'),(5950,8207,'_elementor_data','[{\"id\":\"1e878f39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a9c35f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b4f9955\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3abf5173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a431e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16e925ac\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"f8300\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1a3bf5d0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"28c9244d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"1376fcea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17c783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"576eff3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"607fd0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d590152\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"fcae319\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5d59bf2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"230322a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74358e14\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"367d11a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a37ca53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1d9841\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5951,8207,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5952,8207,'_wp_old_slug','laminate-flooring'),(5953,8207,'_thumbnail_id','1539'),(5954,8207,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5955,8207,'icon_type','image'),(5956,8207,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon6.png\";s:2:\"id\";s:4:\"5225\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"197\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon6-150x150.png\";}'),(5957,8207,'rs_page_bg_color',''),(5958,8207,'_wp_old_slug','program-management'),(5959,8207,'_wp_old_date','2019-11-13'),(5960,8207,'_wp_old_slug','life-insurance'),(5961,8207,'custom_pagetitle','themeoption'),(5962,8207,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5963,8207,'p_page_title_color',''),(5964,8207,'ptitle_overlay','themeoption'),(5965,8207,'_wp_old_slug','legal-assessment'),(5966,8207,'_wp_old_slug','legal-assessment-and-hr-management'),(5967,8207,'_wp_old_slug','no-coding-skills'),(5968,8207,'_wp_old_slug','business-process-service'),(5969,8208,'_edit_last','1'),(5970,8208,'_wp_page_template','default'),(5971,8208,'service_icon',''),(5972,8208,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(5973,8208,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(5974,8208,'slide_template',''),(5975,8208,'_elementor_edit_mode','builder'),(5976,8208,'_elementor_template_type','wp-post'),(5977,8208,'_elementor_version','2.7.5'),(5978,8208,'_elementor_data','[{\"id\":\"4881fb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"60f5cf44\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5236cc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5bf474db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21ca04a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118ec289\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3e340a56\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"9a22fc5\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"5a3ebb17\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"68320a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415a7443\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5e6d0038\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"64eeb67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42ea80fc\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"52d8de1c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"233d4206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3651e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71cdb235\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a78cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a925c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"526a9100\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(5979,8208,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(5980,8208,'_wp_old_slug','surface-demolition'),(5981,8208,'_thumbnail_id','1556'),(5982,8208,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(5983,8208,'icon_type','image'),(5984,8208,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon5.png\";s:2:\"id\";s:4:\"5224\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"186\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon5-150x150.png\";}'),(5985,8208,'rs_page_bg_color',''),(5986,8208,'_wp_old_slug','business-planning'),(5987,8208,'_wp_old_date','2019-11-13'),(5988,8208,'_wp_old_slug','health-insurance'),(5989,8208,'custom_pagetitle','themeoption'),(5990,8208,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(5991,8208,'p_page_title_color',''),(5992,8208,'ptitle_overlay','themeoption'),(5993,8208,'_wp_old_slug','seo-optimization'),(5994,8208,'_wp_old_slug','lifetime-updates'),(5995,8209,'_edit_last','1'),(5996,8209,'_wp_page_template','default'),(5997,8209,'service_icon',''),(5998,8209,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(5999,8209,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(6000,8209,'slide_template',''),(6001,8209,'_wp_old_date','2019-12-15'),(6002,8209,'_elementor_edit_mode','builder'),(6003,8209,'_elementor_template_type','wp-post'),(6004,8209,'_elementor_version','2.8.2'),(6005,8209,'_elementor_data','[{\"id\":\"f71bbd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77476d13\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65f4c82a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"40e943bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e9b79e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69ebafa0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"294cdfea\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6663b56\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"12dbcad8\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"bb7c850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15cbe3c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"8d917c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30043fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f4ca975\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a4f2513\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324ad909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"622a7bb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"537521e4\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34a6953a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3161829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f924728\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6006,8209,'icon_type','image'),(6007,8209,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon4.png\";s:2:\"id\";s:4:\"5223\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"188\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon4-150x150.png\";}'),(6008,8209,'rs_page_bg_color',''),(6009,8209,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6010,8209,'_wp_old_slug','setup-and-training__trashed'),(6011,8209,'_wp_old_slug','setup-and-training'),(6012,8209,'_wp_old_date','2019-12-04'),(6013,8209,'_wp_old_date','2020-02-04'),(6014,8209,'_wp_old_slug','home-insurance'),(6015,8209,'_thumbnail_id','1534'),(6016,8209,'_wp_old_slug','market-research'),(6017,8209,'custom_pagetitle','themeoption'),(6018,8209,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(6019,8209,'p_page_title_color',''),(6020,8209,'ptitle_overlay','themeoption'),(6021,8209,'_wp_old_slug','market-research-and-advertising'),(6022,8209,'_wp_old_slug','extensive-docs'),(6023,8209,'_wp_old_slug','business-planning'),(6024,8210,'_edit_last','1'),(6025,8210,'_wp_page_template','default'),(6026,8210,'service_icon',''),(6027,8210,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(6028,8210,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(6029,8210,'slide_template',''),(6030,8210,'_wp_old_date','2019-12-15'),(6031,8210,'_elementor_edit_mode','builder'),(6032,8210,'_elementor_template_type','wp-post'),(6033,8210,'_elementor_version','2.9.6'),(6034,8210,'_elementor_data','[{\"id\":\"35d636a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"397d9651\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e91ae1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4dc16a8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"365b03bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44c0289d\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"79479e0d\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2375eb14\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"37af1b7c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"79ab90e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773c0bb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"46b12884\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1040e061\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147e59da\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"445c6273\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e58457c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"77e2a5fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bfe3ad7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ff9f718\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4aee66fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"19e73df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6035,8210,'icon_type','image'),(6036,8210,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\";s:2:\"id\";s:4:\"5222\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"182\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3-150x150.png\";}'),(6037,8210,'rs_page_bg_color',''),(6038,8210,'_wp_old_slug','legal-assessment__trashed'),(6039,8210,'_wp_old_slug','legal-assessment'),(6040,8210,'_thumbnail_id','4705'),(6041,8210,'_wp_old_date','2019-12-04'),(6042,8210,'_wp_old_date','2020-02-04'),(6043,8210,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6044,8210,'_wp_old_slug','car-insurance'),(6045,8210,'_wp_old_slug','business-planning'),(6046,8210,'custom_pagetitle','themeoption'),(6047,8210,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(6048,8210,'p_page_title_color',''),(6049,8210,'ptitle_overlay','themeoption'),(6050,8210,'_wp_old_slug','life-health-insurance-consulting'),(6051,8210,'_wp_old_slug','global-connection'),(6052,8210,'_wp_old_slug','tax-management'),(6053,4171,'_edit_last','1'),(6054,4171,'_wp_page_template','default'),(6055,4171,'icon_type','icon'),(6056,4171,'service_icon','flaticon-stats'),(6057,4171,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(6058,4171,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(6059,4171,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(6060,4171,'slide_template',''),(6061,4171,'rs_page_bg_color',''),(6062,4171,'_wp_old_date','2020-01-21'),(6063,4171,'_elementor_edit_mode','builder'),(6064,4171,'_elementor_template_type','wp-post'),(6065,4171,'_elementor_version','2.9.6'),(6066,4171,'_elementor_data','[{\"id\":\"6c67734\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"44ffb367\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65760aff\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4c49accc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38ac0e77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3403ca95\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5b6def17\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"7a542963\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"64356383\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"43162871\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58b58dfc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3bfd56b7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6f0e2371\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ccd9bf\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"505dcc04\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72318916\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49fae915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41bf0205\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"724df9e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d1ccc31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c8d5802\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6067,4171,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6068,8211,'_edit_last','1'),(6069,8211,'_wp_page_template','default'),(6070,8211,'icon_type','icon'),(6071,8211,'service_icon','flaticon-chart'),(6072,8211,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(6073,8211,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(6074,8211,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(6075,8211,'slide_template',''),(6076,8211,'rs_page_bg_color',''),(6077,8211,'_elementor_edit_mode','builder'),(6078,8211,'_elementor_template_type','wp-post'),(6079,8211,'_elementor_version','2.9.6'),(6080,8211,'_elementor_data','[{\"id\":\"4768c103\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7750b682\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ef8fb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"24df3c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7287157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"381bdecc\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"283f37f7\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"189ea31\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"6640a592\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d2db62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103ed49d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"1fb4aeb0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"310525f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"35cda179\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"485e1348\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"550c04b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1570951c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"756e5eb9\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40af6df3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5de5804e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7033d293\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6081,8211,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6082,8211,'_wp_old_slug','brand-package'),(6083,8211,'_wp_old_slug','applied-intelligence'),(6084,8212,'_edit_last','1'),(6085,8212,'_wp_page_template','default'),(6086,8212,'icon_type','icon'),(6087,8212,'service_icon','flaticon-leadership'),(6088,8212,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(6089,8212,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(6090,8212,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(6091,8212,'slide_template',''),(6092,8212,'rs_page_bg_color',''),(6093,8212,'_elementor_edit_mode','builder'),(6094,8212,'_elementor_template_type','wp-post'),(6095,8212,'_elementor_version','2.9.6'),(6096,8212,'_elementor_data','[{\"id\":\"708ce3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a5bbf70\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6c4ae781\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"21e354b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1432ade\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cfd4902\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"31efdd58\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57fa577d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d353789\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":3,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"f4be680\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d515d76\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"413a3416\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d6776f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7c4d2e83\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6de25836\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"28074dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"79d8da8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3f0cd7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"548f6a1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77964138\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"475c150\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6097,8212,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6098,8212,'_wp_old_slug','business-strategy'),(6099,8212,'_wp_old_slug','business-planning-2'),(6100,8212,'_wp_old_slug','strategy-consulting'),(6121,4931,'_edit_last','1'),(6122,4931,'_wp_page_template','default'),(6123,4931,'icon_type','image'),(6124,4931,'service_icon',''),(6125,4931,'service_icon_img','a:5:{s:3:\"url\";s:92:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\";s:2:\"id\";s:4:\"5222\";s:6:\"height\";s:3:\"188\";s:5:\"width\";s:3:\"182\";s:9:\"thumbnail\";s:100:\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3-150x150.png\";}'),(6126,4931,'service_except','As a web crawler expert, I help organi zations adjust to the expanding signig ficance of internet promoting.'),(6127,4931,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(6128,4931,'custom_pagetitle','themeoption'),(6129,4931,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(6130,4931,'p_page_title_color',''),(6131,4931,'ptitle_overlay','themeoption'),(6132,4931,'slide_template',''),(6133,4931,'rs_page_bg_color',''),(6134,4931,'_wp_old_date','2020-06-13'),(6135,4931,'_thumbnail_id','1539'),(6136,4931,'_elementor_edit_mode','builder'),(6137,4931,'_elementor_template_type','wp-post'),(6138,4931,'_elementor_version','2.9.13'),(6139,4931,'_elementor_data','[{\"id\":\"4648e02\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"202334f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cea3c53\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"20497c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51bc2539\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10686d70\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"8ec33ae\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"bf7506a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"65f0b193\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"18e72853\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44c78a7b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"45feaa6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d9bdc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c8d6456\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"37c83b05\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"505317b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1c8930ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1755f097\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1e22b4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36006427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6fe7bab0\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(6140,4931,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(6141,91,'_elementor_controls_usage','a:0:{}'),(6142,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>'),(6143,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:185:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6144,91,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:185:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6145,91,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6146,91,'_additional_settings',''),(6147,91,'_locale','en_US'),(6148,1615,'_elementor_controls_usage','a:0:{}'),(6149,1615,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(6150,1615,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6151,1615,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6152,1615,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6153,1615,'_additional_settings',''),(6154,1615,'_locale','en_US'),(6155,3823,'_elementor_controls_usage','a:0:{}'),(6156,3823,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>'),(6157,3823,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6158,3823,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6159,3823,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6160,3823,'_additional_settings',''),(6161,3823,'_locale','en_US'),(6162,3851,'_elementor_controls_usage','a:0:{}'),(6163,3851,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(6164,3851,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:291:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6165,3851,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:291:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6166,3851,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6167,3851,'_additional_settings',''),(6168,3851,'_locale','en_US'),(6169,5003,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	\n	<div class=\"input-filled col-lg-12 col-md-12\">[select* your-service \"Services\" \"NursingJobsUK\" \"Study Abroad\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block hover-white\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(6170,5003,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"Ealoor Consultancy \"[your-service]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [first-name] [last-name]  <[your-email]>\nPhone: [your-phone]\nService: [your-service] \nMessage : [your-message]\n\n-- \nThis e-mail was sent from a contact form on Ealoor Consultancy\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6171,5003,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:181:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6172,5003,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6173,5003,'_additional_settings',''),(6174,5003,'_locale','en_US'),(6175,5005,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Phone number...\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[select* your-service \"Choose services*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-paper-plane space-right\"></i>Get a Quote</button></div>\n</div>'),(6176,5005,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6177,5005,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-business3)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6178,5005,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6179,5005,'_additional_settings',''),(6180,5005,'_locale','en_US'),(6181,5005,'_config_errors','a:2:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}s:16:\"mail_2.recipient\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(6182,8213,'_menu_item_type','post_type'),(6183,8213,'_menu_item_menu_item_parent','8182'),(6184,8213,'_menu_item_object_id','32'),(6185,8213,'_menu_item_object','page'),(6186,8213,'_menu_item_target',''),(6187,8213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6188,8213,'_menu_item_xfn',''),(6189,8213,'_menu_item_url',''),(6190,8214,'_menu_item_type','post_type'),(6191,8214,'_menu_item_menu_item_parent','8182'),(6192,8214,'_menu_item_object_id','30'),(6193,8214,'_menu_item_object','page'),(6194,8214,'_menu_item_target',''),(6195,8214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6196,8214,'_menu_item_xfn',''),(6197,8214,'_menu_item_url',''),(6198,8215,'_menu_item_type','post_type'),(6199,8215,'_menu_item_menu_item_parent','8182'),(6200,8215,'_menu_item_object_id','28'),(6201,8215,'_menu_item_object','page'),(6202,8215,'_menu_item_target',''),(6203,8215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6204,8215,'_menu_item_xfn',''),(6205,8215,'_menu_item_url',''),(6206,8216,'_menu_item_type','post_type'),(6207,8216,'_menu_item_menu_item_parent','8182'),(6208,8216,'_menu_item_object_id','26'),(6209,8216,'_menu_item_object','page'),(6210,8216,'_menu_item_target',''),(6211,8216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6212,8216,'_menu_item_xfn',''),(6213,8216,'_menu_item_url',''),(6222,8218,'_menu_item_type','post_type'),(6223,8218,'_menu_item_menu_item_parent','0'),(6224,8218,'_menu_item_object_id','9'),(6225,8218,'_menu_item_object','page'),(6226,8218,'_menu_item_target',''),(6227,8218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6228,8218,'_menu_item_xfn',''),(6229,8218,'_menu_item_url',''),(6230,8219,'_menu_item_type','post_type'),(6231,8219,'_menu_item_menu_item_parent','0'),(6232,8219,'_menu_item_object_id','26'),(6233,8219,'_menu_item_object','page'),(6234,8219,'_menu_item_target',''),(6235,8219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6236,8219,'_menu_item_xfn',''),(6237,8219,'_menu_item_url',''),(6246,8221,'_menu_item_type','post_type'),(6247,8221,'_menu_item_menu_item_parent','0'),(6248,8221,'_menu_item_object_id','132'),(6249,8221,'_menu_item_object','page'),(6250,8221,'_menu_item_target',''),(6251,8221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6252,8221,'_menu_item_xfn',''),(6253,8221,'_menu_item_url',''),(6254,8222,'_menu_item_type','post_type'),(6255,8222,'_menu_item_menu_item_parent','8221'),(6256,8222,'_menu_item_object_id','132'),(6257,8222,'_menu_item_object','page'),(6258,8222,'_menu_item_target',''),(6259,8222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6260,8222,'_menu_item_xfn',''),(6261,8222,'_menu_item_url',''),(6262,8223,'_menu_item_type','post_type'),(6263,8223,'_menu_item_menu_item_parent','8221'),(6264,8223,'_menu_item_object_id','129'),(6265,8223,'_menu_item_object','page'),(6266,8223,'_menu_item_target',''),(6267,8223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6268,8223,'_menu_item_xfn',''),(6269,8223,'_menu_item_url',''),(6270,8224,'_menu_item_type','post_type'),(6271,8224,'_menu_item_menu_item_parent','8221'),(6272,8224,'_menu_item_object_id','123'),(6273,8224,'_menu_item_object','page'),(6274,8224,'_menu_item_target',''),(6275,8224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6276,8224,'_menu_item_xfn',''),(6277,8224,'_menu_item_url',''),(6278,8225,'_menu_item_type','post_type'),(6279,8225,'_menu_item_menu_item_parent','8223'),(6280,8225,'_menu_item_object_id','129'),(6281,8225,'_menu_item_object','page'),(6282,8225,'_menu_item_target',''),(6283,8225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6284,8225,'_menu_item_xfn',''),(6285,8225,'_menu_item_url',''),(6286,8226,'_menu_item_type','post_type'),(6287,8226,'_menu_item_menu_item_parent','8223'),(6288,8226,'_menu_item_object_id','127'),(6289,8226,'_menu_item_object','page'),(6290,8226,'_menu_item_target',''),(6291,8226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6292,8226,'_menu_item_xfn',''),(6293,8226,'_menu_item_url',''),(6294,8227,'_menu_item_type','post_type'),(6295,8227,'_menu_item_menu_item_parent','8223'),(6296,8227,'_menu_item_object_id','125'),(6297,8227,'_menu_item_object','page'),(6298,8227,'_menu_item_target',''),(6299,8227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6300,8227,'_menu_item_xfn',''),(6301,8227,'_menu_item_url',''),(6302,8228,'_menu_item_type','post_type'),(6303,8228,'_menu_item_menu_item_parent','8222'),(6304,8228,'_menu_item_object_id','136'),(6305,8228,'_menu_item_object','page'),(6306,8228,'_menu_item_target',''),(6307,8228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6308,8228,'_menu_item_xfn',''),(6309,8228,'_menu_item_url',''),(6310,8229,'_menu_item_type','post_type'),(6311,8229,'_menu_item_menu_item_parent','8222'),(6312,8229,'_menu_item_object_id','134'),(6313,8229,'_menu_item_object','page'),(6314,8229,'_menu_item_target',''),(6315,8229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6316,8229,'_menu_item_xfn',''),(6317,8229,'_menu_item_url',''),(6318,8230,'_menu_item_type','post_type'),(6319,8230,'_menu_item_menu_item_parent','8222'),(6320,8230,'_menu_item_object_id','132'),(6321,8230,'_menu_item_object','page'),(6322,8230,'_menu_item_target',''),(6323,8230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6324,8230,'_menu_item_xfn',''),(6325,8230,'_menu_item_url',''),(6358,8235,'_menu_item_type','post_type'),(6359,8235,'_menu_item_menu_item_parent','8182'),(6360,8235,'_menu_item_object_id','362'),(6361,8235,'_menu_item_object','page'),(6362,8235,'_menu_item_target',''),(6363,8235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6364,8235,'_menu_item_xfn',''),(6365,8235,'_menu_item_url',''),(6366,8236,'_menu_item_type','post_type'),(6367,8236,'_menu_item_menu_item_parent','8182'),(6368,8236,'_menu_item_object_id','367'),(6369,8236,'_menu_item_object','page'),(6370,8236,'_menu_item_target',''),(6371,8236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6372,8236,'_menu_item_xfn',''),(6373,8236,'_menu_item_url',''),(6374,8237,'_menu_item_type','post_type'),(6375,8237,'_menu_item_menu_item_parent','0'),(6376,8237,'_menu_item_object_id','407'),(6377,8237,'_menu_item_object','page'),(6378,8237,'_menu_item_target',''),(6379,8237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6380,8237,'_menu_item_xfn',''),(6381,8237,'_menu_item_url',''),(6382,8238,'_menu_item_type','post_type'),(6383,8238,'_menu_item_menu_item_parent','8240'),(6384,8238,'_menu_item_object_id','417'),(6385,8238,'_menu_item_object','page'),(6386,8238,'_menu_item_target',''),(6387,8238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6388,8238,'_menu_item_xfn',''),(6389,8238,'_menu_item_url',''),(6390,8239,'_menu_item_type','post_type'),(6391,8239,'_menu_item_menu_item_parent','8240'),(6392,8239,'_menu_item_object_id','415'),(6393,8239,'_menu_item_object','page'),(6394,8239,'_menu_item_target',''),(6395,8239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6396,8239,'_menu_item_xfn',''),(6397,8239,'_menu_item_url',''),(6398,8240,'_menu_item_type','post_type'),(6399,8240,'_menu_item_menu_item_parent','0'),(6400,8240,'_menu_item_object_id','415'),(6401,8240,'_menu_item_object','page'),(6402,8240,'_menu_item_target',''),(6403,8240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6404,8240,'_menu_item_xfn',''),(6405,8240,'_menu_item_url',''),(6406,8241,'_menu_item_type','post_type'),(6407,8241,'_menu_item_menu_item_parent','0'),(6408,8241,'_menu_item_object_id','407'),(6409,8241,'_menu_item_object','page'),(6410,8241,'_menu_item_target',''),(6411,8241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6412,8241,'_menu_item_xfn',''),(6413,8241,'_menu_item_url',''),(6414,8242,'_menu_item_type','post_type'),(6415,8242,'_menu_item_menu_item_parent','0'),(6416,8242,'_menu_item_object_id','129'),(6417,8242,'_menu_item_object','page'),(6418,8242,'_menu_item_target',''),(6419,8242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6420,8242,'_menu_item_xfn',''),(6421,8242,'_menu_item_url',''),(6422,8243,'_menu_item_type','post_type'),(6423,8243,'_menu_item_menu_item_parent','0'),(6424,8243,'_menu_item_object_id','415'),(6425,8243,'_menu_item_object','page'),(6426,8243,'_menu_item_target',''),(6427,8243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6428,8243,'_menu_item_xfn',''),(6429,8243,'_menu_item_url',''),(6430,8244,'_menu_item_type','post_type'),(6431,8244,'_menu_item_menu_item_parent','8240'),(6432,8244,'_menu_item_object_id','579'),(6433,8244,'_menu_item_object','portfolio'),(6434,8244,'_menu_item_target',''),(6435,8244,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6436,8244,'_menu_item_xfn',''),(6437,8244,'_menu_item_url',''),(6438,8245,'_menu_item_type','post_type'),(6439,8245,'_menu_item_menu_item_parent','8247'),(6440,8245,'_menu_item_object_id','749'),(6441,8245,'_menu_item_object','page'),(6442,8245,'_menu_item_target',''),(6443,8245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6444,8245,'_menu_item_xfn',''),(6445,8245,'_menu_item_url',''),(6446,8246,'_menu_item_type','post_type'),(6447,8246,'_menu_item_menu_item_parent','8247'),(6448,8246,'_menu_item_object_id','748'),(6449,8246,'_menu_item_object','page'),(6450,8246,'_menu_item_target',''),(6451,8246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6452,8246,'_menu_item_xfn',''),(6453,8246,'_menu_item_url',''),(6454,8247,'_menu_item_type','post_type'),(6455,8247,'_menu_item_menu_item_parent','8182'),(6456,8247,'_menu_item_object_id','748'),(6457,8247,'_menu_item_object','page'),(6458,8247,'_menu_item_target',''),(6459,8247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6460,8247,'_menu_item_xfn',''),(6461,8247,'_menu_item_url',''),(6462,8248,'_menu_item_type','post_type'),(6463,8248,'_menu_item_menu_item_parent','8247'),(6464,8248,'_menu_item_object_id','783'),(6465,8248,'_menu_item_object','page'),(6466,8248,'_menu_item_target',''),(6467,8248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6468,8248,'_menu_item_xfn',''),(6469,8248,'_menu_item_url',''),(6470,8249,'_menu_item_type','post_type'),(6471,8249,'_menu_item_menu_item_parent','0'),(6472,8249,'_menu_item_object_id','8208'),(6473,8249,'_menu_item_object','service'),(6474,8249,'_menu_item_target',''),(6475,8249,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6476,8249,'_menu_item_xfn',''),(6477,8249,'_menu_item_url',''),(6478,8250,'_menu_item_type','post_type'),(6479,8250,'_menu_item_menu_item_parent','0'),(6480,8250,'_menu_item_object_id','8207'),(6481,8250,'_menu_item_object','service'),(6482,8250,'_menu_item_target',''),(6483,8250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6484,8250,'_menu_item_xfn',''),(6485,8250,'_menu_item_url',''),(6486,8251,'_menu_item_type','post_type'),(6487,8251,'_menu_item_menu_item_parent','0'),(6488,8251,'_menu_item_object_id','8205'),(6489,8251,'_menu_item_object','service'),(6490,8251,'_menu_item_target',''),(6491,8251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6492,8251,'_menu_item_xfn',''),(6493,8251,'_menu_item_url',''),(6494,8252,'_menu_item_type','post_type'),(6495,8252,'_menu_item_menu_item_parent','0'),(6496,8252,'_menu_item_object_id','8204'),(6497,8252,'_menu_item_object','service'),(6498,8252,'_menu_item_target',''),(6499,8252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6500,8252,'_menu_item_xfn',''),(6501,8252,'_menu_item_url',''),(6502,8253,'_menu_item_type','post_type'),(6503,8253,'_menu_item_menu_item_parent','0'),(6504,8253,'_menu_item_object_id','8203'),(6505,8253,'_menu_item_object','service'),(6506,8253,'_menu_item_target',''),(6507,8253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6508,8253,'_menu_item_xfn',''),(6509,8253,'_menu_item_url',''),(6510,8254,'_menu_item_type','post_type'),(6511,8254,'_menu_item_menu_item_parent','8182'),(6512,8254,'_menu_item_object_id','1972'),(6513,8254,'_menu_item_object','page'),(6514,8254,'_menu_item_target',''),(6515,8254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6516,8254,'_menu_item_xfn',''),(6517,8254,'_menu_item_url',''),(6518,8255,'_menu_item_type','post_type'),(6519,8255,'_menu_item_menu_item_parent','0'),(6520,8255,'_menu_item_object_id','407'),(6521,8255,'_menu_item_object','page'),(6522,8255,'_menu_item_target',''),(6523,8255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6524,8255,'_menu_item_xfn',''),(6525,8255,'_menu_item_url',''),(6526,8256,'_menu_item_type','post_type'),(6527,8256,'_menu_item_menu_item_parent','8184'),(6528,8256,'_menu_item_object_id','26'),(6529,8256,'_menu_item_object','page'),(6530,8256,'_menu_item_target',''),(6531,8256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6532,8256,'_menu_item_xfn',''),(6533,8256,'_menu_item_url',''),(6534,8257,'_menu_item_type','post_type'),(6535,8257,'_menu_item_menu_item_parent','8184'),(6536,8257,'_menu_item_object_id','30'),(6537,8257,'_menu_item_object','page'),(6538,8257,'_menu_item_target',''),(6539,8257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6540,8257,'_menu_item_xfn',''),(6541,8257,'_menu_item_url',''),(6542,8258,'_menu_item_type','post_type'),(6543,8258,'_menu_item_menu_item_parent','8184'),(6544,8258,'_menu_item_object_id','32'),(6545,8258,'_menu_item_object','page'),(6546,8258,'_menu_item_target',''),(6547,8258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6548,8258,'_menu_item_xfn',''),(6549,8258,'_menu_item_url',''),(6550,8259,'_menu_item_type','post_type'),(6551,8259,'_menu_item_menu_item_parent','8184'),(6552,8259,'_menu_item_object_id','28'),(6553,8259,'_menu_item_object','page'),(6554,8259,'_menu_item_target',''),(6555,8259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6556,8259,'_menu_item_xfn',''),(6557,8259,'_menu_item_url',''),(6558,8260,'_menu_item_type','post_type'),(6559,8260,'_menu_item_menu_item_parent','8184'),(6560,8260,'_menu_item_object_id','362'),(6561,8260,'_menu_item_object','page'),(6562,8260,'_menu_item_target',''),(6563,8260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6564,8260,'_menu_item_xfn',''),(6565,8260,'_menu_item_url',''),(6566,8261,'_menu_item_type','post_type'),(6567,8261,'_menu_item_menu_item_parent','8184'),(6568,8261,'_menu_item_object_id','367'),(6569,8261,'_menu_item_object','page'),(6570,8261,'_menu_item_target',''),(6571,8261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6572,8261,'_menu_item_xfn',''),(6573,8261,'_menu_item_url',''),(6574,8262,'_menu_item_type','post_type'),(6575,8262,'_menu_item_menu_item_parent','8184'),(6576,8262,'_menu_item_object_id','1972'),(6577,8262,'_menu_item_object','page'),(6578,8262,'_menu_item_target',''),(6579,8262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6580,8262,'_menu_item_xfn',''),(6581,8262,'_menu_item_url',''),(6582,8263,'_menu_item_type','post_type'),(6583,8263,'_menu_item_menu_item_parent','0'),(6584,8263,'_menu_item_object_id','132'),(6585,8263,'_menu_item_object','page'),(6586,8263,'_menu_item_target',''),(6587,8263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6588,8263,'_menu_item_xfn',''),(6589,8263,'_menu_item_url',''),(6590,8264,'_menu_item_type','post_type'),(6591,8264,'_menu_item_menu_item_parent','8263'),(6592,8264,'_menu_item_object_id','132'),(6593,8264,'_menu_item_object','page'),(6594,8264,'_menu_item_target',''),(6595,8264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6596,8264,'_menu_item_xfn',''),(6597,8264,'_menu_item_url',''),(6598,8265,'_menu_item_type','post_type'),(6599,8265,'_menu_item_menu_item_parent','8263'),(6600,8265,'_menu_item_object_id','123'),(6601,8265,'_menu_item_object','page'),(6602,8265,'_menu_item_target',''),(6603,8265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6604,8265,'_menu_item_xfn',''),(6605,8265,'_menu_item_url',''),(6606,8266,'_menu_item_type','post_type'),(6607,8266,'_menu_item_menu_item_parent','8268'),(6608,8266,'_menu_item_object_id','125'),(6609,8266,'_menu_item_object','page'),(6610,8266,'_menu_item_target',''),(6611,8266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6612,8266,'_menu_item_xfn',''),(6613,8266,'_menu_item_url',''),(6614,8267,'_menu_item_type','post_type'),(6615,8267,'_menu_item_menu_item_parent','8268'),(6616,8267,'_menu_item_object_id','127'),(6617,8267,'_menu_item_object','page'),(6618,8267,'_menu_item_target',''),(6619,8267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6620,8267,'_menu_item_xfn',''),(6621,8267,'_menu_item_url',''),(6622,8268,'_menu_item_type','post_type'),(6623,8268,'_menu_item_menu_item_parent','8263'),(6624,8268,'_menu_item_object_id','129'),(6625,8268,'_menu_item_object','page'),(6626,8268,'_menu_item_target',''),(6627,8268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6628,8268,'_menu_item_xfn',''),(6629,8268,'_menu_item_url',''),(6630,8269,'_menu_item_type','post_type'),(6631,8269,'_menu_item_menu_item_parent','8264'),(6632,8269,'_menu_item_object_id','134'),(6633,8269,'_menu_item_object','page'),(6634,8269,'_menu_item_target',''),(6635,8269,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6636,8269,'_menu_item_xfn',''),(6637,8269,'_menu_item_url',''),(6638,8270,'_menu_item_type','post_type'),(6639,8270,'_menu_item_menu_item_parent','8264'),(6640,8270,'_menu_item_object_id','136'),(6641,8270,'_menu_item_object','page'),(6642,8270,'_menu_item_target',''),(6643,8270,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6644,8270,'_menu_item_xfn',''),(6645,8270,'_menu_item_url',''),(6646,8271,'_menu_item_type','post_type'),(6647,8271,'_menu_item_menu_item_parent','8264'),(6648,8271,'_menu_item_object_id','132'),(6649,8271,'_menu_item_object','page'),(6650,8271,'_menu_item_target',''),(6651,8271,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6652,8271,'_menu_item_xfn',''),(6653,8271,'_menu_item_url',''),(6654,8272,'_menu_item_type','post_type'),(6655,8272,'_menu_item_menu_item_parent','8268'),(6656,8272,'_menu_item_object_id','129'),(6657,8272,'_menu_item_object','page'),(6658,8272,'_menu_item_target',''),(6659,8272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6660,8272,'_menu_item_xfn',''),(6661,8272,'_menu_item_url',''),(6702,8278,'_menu_item_type','post_type'),(6703,8278,'_menu_item_menu_item_parent','8259'),(6704,8278,'_menu_item_object_id','3520'),(6705,8278,'_menu_item_object','page'),(6706,8278,'_menu_item_target',''),(6707,8278,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6708,8278,'_menu_item_xfn',''),(6709,8278,'_menu_item_url',''),(6710,8279,'_menu_item_type','post_type'),(6711,8279,'_menu_item_menu_item_parent','8259'),(6712,8279,'_menu_item_object_id','3518'),(6713,8279,'_menu_item_object','page'),(6714,8279,'_menu_item_target',''),(6715,8279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6716,8279,'_menu_item_xfn',''),(6717,8279,'_menu_item_url',''),(6718,8280,'_menu_item_type','post_type'),(6719,8280,'_menu_item_menu_item_parent','8259'),(6720,8280,'_menu_item_object_id','3516'),(6721,8280,'_menu_item_object','page'),(6722,8280,'_menu_item_target',''),(6723,8280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6724,8280,'_menu_item_xfn',''),(6725,8280,'_menu_item_url',''),(6726,8281,'_menu_item_type','post_type'),(6727,8281,'_menu_item_menu_item_parent','8258'),(6728,8281,'_menu_item_object_id','3504'),(6729,8281,'_menu_item_object','page'),(6730,8281,'_menu_item_target',''),(6731,8281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6732,8281,'_menu_item_xfn',''),(6733,8281,'_menu_item_url',''),(6734,8282,'_menu_item_type','post_type'),(6735,8282,'_menu_item_menu_item_parent','8261'),(6736,8282,'_menu_item_object_id','3502'),(6737,8282,'_menu_item_object','page'),(6738,8282,'_menu_item_target',''),(6739,8282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6740,8282,'_menu_item_xfn',''),(6741,8282,'_menu_item_url',''),(6742,8283,'_menu_item_type','post_type'),(6743,8283,'_menu_item_menu_item_parent','8261'),(6744,8283,'_menu_item_object_id','3500'),(6745,8283,'_menu_item_object','page'),(6746,8283,'_menu_item_target',''),(6747,8283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6748,8283,'_menu_item_xfn',''),(6749,8283,'_menu_item_url',''),(6750,8284,'_menu_item_type','post_type'),(6751,8284,'_menu_item_menu_item_parent','8261'),(6752,8284,'_menu_item_object_id','3497'),(6753,8284,'_menu_item_object','page'),(6754,8284,'_menu_item_target',''),(6755,8284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6756,8284,'_menu_item_xfn',''),(6757,8284,'_menu_item_url',''),(6782,8288,'_menu_item_type','post_type'),(6783,8288,'_menu_item_menu_item_parent','8256'),(6784,8288,'_menu_item_object_id','26'),(6785,8288,'_menu_item_object','page'),(6786,8288,'_menu_item_target',''),(6787,8288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6788,8288,'_menu_item_xfn',''),(6789,8288,'_menu_item_url',''),(6790,8289,'_menu_item_type','post_type'),(6791,8289,'_menu_item_menu_item_parent','8258'),(6792,8289,'_menu_item_object_id','32'),(6793,8289,'_menu_item_object','page'),(6794,8289,'_menu_item_target',''),(6795,8289,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6796,8289,'_menu_item_xfn',''),(6797,8289,'_menu_item_url',''),(6798,8290,'_menu_item_type','post_type'),(6799,8290,'_menu_item_menu_item_parent','8259'),(6800,8290,'_menu_item_object_id','28'),(6801,8290,'_menu_item_object','page'),(6802,8290,'_menu_item_target',''),(6803,8290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6804,8290,'_menu_item_xfn',''),(6805,8290,'_menu_item_url',''),(6806,8291,'_menu_item_type','post_type'),(6807,8291,'_menu_item_menu_item_parent','8261'),(6808,8291,'_menu_item_object_id','367'),(6809,8291,'_menu_item_object','page'),(6810,8291,'_menu_item_target',''),(6811,8291,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6812,8291,'_menu_item_xfn',''),(6813,8291,'_menu_item_url',''),(6838,8295,'_menu_item_type','post_type'),(6839,8295,'_menu_item_menu_item_parent','8277'),(6840,8295,'_menu_item_object_id','3514'),(6841,8295,'_menu_item_object','page'),(6842,8295,'_menu_item_target',''),(6843,8295,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6844,8295,'_menu_item_xfn',''),(6845,8295,'_menu_item_url',''),(6846,8296,'_menu_item_type','post_type'),(6847,8296,'_menu_item_menu_item_parent','8215'),(6848,8296,'_menu_item_object_id','3520'),(6849,8296,'_menu_item_object','page'),(6850,8296,'_menu_item_target',''),(6851,8296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6852,8296,'_menu_item_xfn',''),(6853,8296,'_menu_item_url',''),(6854,8297,'_menu_item_type','post_type'),(6855,8297,'_menu_item_menu_item_parent','8215'),(6856,8297,'_menu_item_object_id','3518'),(6857,8297,'_menu_item_object','page'),(6858,8297,'_menu_item_target',''),(6859,8297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6860,8297,'_menu_item_xfn',''),(6861,8297,'_menu_item_url',''),(6862,8298,'_menu_item_type','post_type'),(6863,8298,'_menu_item_menu_item_parent','8215'),(6864,8298,'_menu_item_object_id','3516'),(6865,8298,'_menu_item_object','page'),(6866,8298,'_menu_item_target',''),(6867,8298,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6868,8298,'_menu_item_xfn',''),(6869,8298,'_menu_item_url',''),(6886,8301,'_menu_item_type','post_type'),(6887,8301,'_menu_item_menu_item_parent','8217'),(6888,8301,'_menu_item_object_id','3514'),(6889,8301,'_menu_item_object','page'),(6890,8301,'_menu_item_target',''),(6891,8301,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6892,8301,'_menu_item_xfn',''),(6893,8301,'_menu_item_url',''),(6910,8304,'_menu_item_type','post_type'),(6911,8304,'_menu_item_menu_item_parent','8213'),(6912,8304,'_menu_item_object_id','3504'),(6913,8304,'_menu_item_object','page'),(6914,8304,'_menu_item_target',''),(6915,8304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6916,8304,'_menu_item_xfn',''),(6917,8304,'_menu_item_url',''),(6918,8305,'_menu_item_type','post_type'),(6919,8305,'_menu_item_menu_item_parent','8236'),(6920,8305,'_menu_item_object_id','3502'),(6921,8305,'_menu_item_object','page'),(6922,8305,'_menu_item_target',''),(6923,8305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6924,8305,'_menu_item_xfn',''),(6925,8305,'_menu_item_url',''),(6926,8306,'_menu_item_type','post_type'),(6927,8306,'_menu_item_menu_item_parent','8236'),(6928,8306,'_menu_item_object_id','3500'),(6929,8306,'_menu_item_object','page'),(6930,8306,'_menu_item_target',''),(6931,8306,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6932,8306,'_menu_item_xfn',''),(6933,8306,'_menu_item_url',''),(6934,8307,'_menu_item_type','post_type'),(6935,8307,'_menu_item_menu_item_parent','8236'),(6936,8307,'_menu_item_object_id','3497'),(6937,8307,'_menu_item_object','page'),(6938,8307,'_menu_item_target',''),(6939,8307,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6940,8307,'_menu_item_xfn',''),(6941,8307,'_menu_item_url',''),(6950,8309,'_menu_item_type','post_type'),(6951,8309,'_menu_item_menu_item_parent','8216'),(6952,8309,'_menu_item_object_id','26'),(6953,8309,'_menu_item_object','page'),(6954,8309,'_menu_item_target',''),(6955,8309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6956,8309,'_menu_item_xfn',''),(6957,8309,'_menu_item_url',''),(6966,8311,'_menu_item_type','post_type'),(6967,8311,'_menu_item_menu_item_parent','8213'),(6968,8311,'_menu_item_object_id','32'),(6969,8311,'_menu_item_object','page'),(6970,8311,'_menu_item_target',''),(6971,8311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6972,8311,'_menu_item_xfn',''),(6973,8311,'_menu_item_url',''),(6974,8312,'_menu_item_type','post_type'),(6975,8312,'_menu_item_menu_item_parent','8215'),(6976,8312,'_menu_item_object_id','28'),(6977,8312,'_menu_item_object','page'),(6978,8312,'_menu_item_target',''),(6979,8312,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6980,8312,'_menu_item_xfn',''),(6981,8312,'_menu_item_url',''),(6982,8313,'_menu_item_type','post_type'),(6983,8313,'_menu_item_menu_item_parent','8236'),(6984,8313,'_menu_item_object_id','367'),(6985,8313,'_menu_item_object','page'),(6986,8313,'_menu_item_target',''),(6987,8313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6988,8313,'_menu_item_xfn',''),(6989,8313,'_menu_item_url',''),(6990,8314,'_menu_item_type','post_type'),(6991,8314,'_menu_item_menu_item_parent','8237'),(6992,8314,'_menu_item_object_id','8210'),(6993,8314,'_menu_item_object','service'),(6994,8314,'_menu_item_target',''),(6995,8314,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6996,8314,'_menu_item_xfn',''),(6997,8314,'_menu_item_url',''),(6998,8315,'_menu_item_type','post_type'),(6999,8315,'_menu_item_menu_item_parent','8237'),(7000,8315,'_menu_item_object_id','8209'),(7001,8315,'_menu_item_object','service'),(7002,8315,'_menu_item_target',''),(7003,8315,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7004,8315,'_menu_item_xfn',''),(7005,8315,'_menu_item_url',''),(7006,8316,'_menu_item_type','post_type'),(7007,8316,'_menu_item_menu_item_parent','8239'),(7008,8316,'_menu_item_object_id','4359'),(7009,8316,'_menu_item_object','page'),(7010,8316,'_menu_item_target',''),(7011,8316,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7012,8316,'_menu_item_xfn',''),(7013,8316,'_menu_item_url',''),(7014,8317,'_menu_item_type','post_type'),(7015,8317,'_menu_item_menu_item_parent','8239'),(7016,8317,'_menu_item_object_id','4357'),(7017,8317,'_menu_item_object','page'),(7018,8317,'_menu_item_target',''),(7019,8317,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7020,8317,'_menu_item_xfn',''),(7021,8317,'_menu_item_url',''),(7022,8318,'_menu_item_type','post_type'),(7023,8318,'_menu_item_menu_item_parent','8239'),(7024,8318,'_menu_item_object_id','4355'),(7025,8318,'_menu_item_object','page'),(7026,8318,'_menu_item_target',''),(7027,8318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7028,8318,'_menu_item_xfn',''),(7029,8318,'_menu_item_url',''),(7030,8319,'_menu_item_type','post_type'),(7031,8319,'_menu_item_menu_item_parent','8239'),(7032,8319,'_menu_item_object_id','415'),(7033,8319,'_menu_item_object','page'),(7034,8319,'_menu_item_target',''),(7035,8319,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7036,8319,'_menu_item_xfn',''),(7037,8319,'_menu_item_url',''),(7038,8320,'_menu_item_type','post_type'),(7039,8320,'_menu_item_menu_item_parent','8184'),(7040,8320,'_menu_item_object_id','748'),(7041,8320,'_menu_item_object','page'),(7042,8320,'_menu_item_target',''),(7043,8320,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7044,8320,'_menu_item_xfn',''),(7045,8320,'_menu_item_url',''),(7046,8321,'_menu_item_type','post_type'),(7047,8321,'_menu_item_menu_item_parent','8327'),(7048,8321,'_menu_item_object_id','417'),(7049,8321,'_menu_item_object','page'),(7050,8321,'_menu_item_target',''),(7051,8321,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7052,8321,'_menu_item_xfn',''),(7053,8321,'_menu_item_url',''),(7054,8322,'_menu_item_type','post_type'),(7055,8322,'_menu_item_menu_item_parent','8328'),(7056,8322,'_menu_item_object_id','4359'),(7057,8322,'_menu_item_object','page'),(7058,8322,'_menu_item_target',''),(7059,8322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7060,8322,'_menu_item_xfn',''),(7061,8322,'_menu_item_url',''),(7062,8323,'_menu_item_type','post_type'),(7063,8323,'_menu_item_menu_item_parent','8328'),(7064,8323,'_menu_item_object_id','4357'),(7065,8323,'_menu_item_object','page'),(7066,8323,'_menu_item_target',''),(7067,8323,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7068,8323,'_menu_item_xfn',''),(7069,8323,'_menu_item_url',''),(7070,8324,'_menu_item_type','post_type'),(7071,8324,'_menu_item_menu_item_parent','8328'),(7072,8324,'_menu_item_object_id','4355'),(7073,8324,'_menu_item_object','page'),(7074,8324,'_menu_item_target',''),(7075,8324,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7076,8324,'_menu_item_xfn',''),(7077,8324,'_menu_item_url',''),(7078,8325,'_menu_item_type','post_type'),(7079,8325,'_menu_item_menu_item_parent','8328'),(7080,8325,'_menu_item_object_id','415'),(7081,8325,'_menu_item_object','page'),(7082,8325,'_menu_item_target',''),(7083,8325,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7084,8325,'_menu_item_xfn',''),(7085,8325,'_menu_item_url',''),(7086,8326,'_menu_item_type','post_type'),(7087,8326,'_menu_item_menu_item_parent','8327'),(7088,8326,'_menu_item_object_id','1740'),(7089,8326,'_menu_item_object','portfolio'),(7090,8326,'_menu_item_target',''),(7091,8326,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7092,8326,'_menu_item_xfn',''),(7093,8326,'_menu_item_url',''),(7094,8327,'_menu_item_type','post_type'),(7095,8327,'_menu_item_menu_item_parent','0'),(7096,8327,'_menu_item_object_id','415'),(7097,8327,'_menu_item_object','page'),(7098,8327,'_menu_item_target',''),(7099,8327,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7100,8327,'_menu_item_xfn',''),(7101,8327,'_menu_item_url',''),(7102,8328,'_menu_item_type','post_type'),(7103,8328,'_menu_item_menu_item_parent','8327'),(7104,8328,'_menu_item_object_id','415'),(7105,8328,'_menu_item_object','page'),(7106,8328,'_menu_item_target',''),(7107,8328,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7108,8328,'_menu_item_xfn',''),(7109,8328,'_menu_item_url',''),(7110,8329,'_menu_item_type','post_type'),(7111,8329,'_menu_item_menu_item_parent','8255'),(7112,8329,'_menu_item_object_id','8204'),(7113,8329,'_menu_item_object','service'),(7114,8329,'_menu_item_target',''),(7115,8329,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7116,8329,'_menu_item_xfn',''),(7117,8329,'_menu_item_url',''),(7118,8330,'_menu_item_type','post_type'),(7119,8330,'_menu_item_menu_item_parent','8255'),(7120,8330,'_menu_item_object_id','8203'),(7121,8330,'_menu_item_object','service'),(7122,8330,'_menu_item_target',''),(7123,8330,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7124,8330,'_menu_item_xfn',''),(7125,8330,'_menu_item_url',''),(7126,8331,'_menu_item_type','post_type'),(7127,8331,'_menu_item_menu_item_parent','8255'),(7128,8331,'_menu_item_object_id','8210'),(7129,8331,'_menu_item_object','service'),(7130,8331,'_menu_item_target',''),(7131,8331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7132,8331,'_menu_item_xfn',''),(7133,8331,'_menu_item_url',''),(7134,8332,'_menu_item_type','post_type'),(7135,8332,'_menu_item_menu_item_parent','8255'),(7136,8332,'_menu_item_object_id','8209'),(7137,8332,'_menu_item_object','service'),(7138,8332,'_menu_item_target',''),(7139,8332,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7140,8332,'_menu_item_xfn',''),(7141,8332,'_menu_item_url',''),(7142,8333,'_menu_item_type','post_type'),(7143,8333,'_menu_item_menu_item_parent','8255'),(7144,8333,'_menu_item_object_id','8208'),(7145,8333,'_menu_item_object','service'),(7146,8333,'_menu_item_target',''),(7147,8333,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7148,8333,'_menu_item_xfn',''),(7149,8333,'_menu_item_url',''),(7150,8334,'_menu_item_type','post_type'),(7151,8334,'_menu_item_menu_item_parent','8237'),(7152,8334,'_menu_item_object_id','8204'),(7153,8334,'_menu_item_object','service'),(7154,8334,'_menu_item_target',''),(7155,8334,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7156,8334,'_menu_item_xfn',''),(7157,8334,'_menu_item_url',''),(7158,8335,'_menu_item_type','post_type'),(7159,8335,'_menu_item_menu_item_parent','8237'),(7160,8335,'_menu_item_object_id','8203'),(7161,8335,'_menu_item_object','service'),(7162,8335,'_menu_item_target',''),(7163,8335,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7164,8335,'_menu_item_xfn',''),(7165,8335,'_menu_item_url',''),(7166,8336,'_menu_item_type','post_type'),(7167,8336,'_menu_item_menu_item_parent','8182'),(7168,8336,'_menu_item_object_id','407'),(7169,8336,'_menu_item_object','page'),(7170,8336,'_menu_item_target',''),(7171,8336,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7172,8336,'_menu_item_xfn',''),(7173,8336,'_menu_item_url',''),(7174,8337,'_menu_item_type','post_type'),(7175,8337,'_menu_item_menu_item_parent','8237'),(7176,8337,'_menu_item_object_id','8208'),(7177,8337,'_menu_item_object','service'),(7178,8337,'_menu_item_target',''),(7179,8337,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7180,8337,'_menu_item_xfn',''),(7181,8337,'_menu_item_url',''),(7182,8338,'_menu_item_type','post_type'),(7183,8338,'_menu_item_menu_item_parent','8237'),(7184,8338,'_menu_item_object_id','8207'),(7185,8338,'_menu_item_object','service'),(7186,8338,'_menu_item_target',''),(7187,8338,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7188,8338,'_menu_item_xfn',''),(7189,8338,'_menu_item_url',''),(7191,5363,'_elementor_page_assets','a:0:{}'),(7192,5363,'_edit_lock','1642404274:1'),(7193,8339,'_elementor_edit_mode','builder'),(7194,8339,'_elementor_template_type','page'),(7195,8339,'_elementor_version','3.5.3'),(7196,8340,'_elementor_edit_mode','builder'),(7197,8340,'_elementor_template_type','page'),(7198,8340,'_elementor_version','3.5.3'),(7199,8339,'_wp_page_template','default'),(7200,8339,'_elementor_data','[{\"id\":\"66d9274c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#08A4A4\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-banner1.png\",\"id\":5177},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"1928a8ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.833,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"5beec435\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_color\":\"#161B39\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"200\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"33a2c6fd\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We have uncovered the five essential elements to maximizing its value.\",\"text_color\":\"#161B39\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"24925d54\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-effect\",\"text\":\"Get Started\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"btn_bg_color\":\"#161B39\",\"btn_bg_color_hover\":\"#FFFFFF\",\"btn_color_hover\":\"#161B39\",\"_css_classes\":\"rm-box-shadow\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"500\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"65aa3d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6600b4df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/man1.png\",\"id\":5181},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false},{\"id\":\"2cfb9516\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":11.414,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21882f73\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":15,\"title\":\"Team member\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"5156958b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":102,\"title\":\"Active <br\\/>cases\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"363b9eca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":105,\"title\":\"Client\\u2019s reviews\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17196f07\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"1ace439f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53da9c35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our <b>platform<\\/b> connects companies with displaced <b>workforces<\\/b>\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Services\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b9c5f37\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"num_words\":15,\"col_lg\":\"4\",\"col_xl\":\"6\",\"dots\":\"true\",\"infinite\":\"true\",\"limit\":9,\"slides_to_scroll\":\"3\",\"icon_item\":[]},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57373ad1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"2516ad38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1417a43a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"752bd6db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70e391c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"557a8b04\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5b1e55ec\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5c812ad7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26142520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"48e6aa81\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"45fcd73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2322b33a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6faec9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"59d9a258\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54fc3338\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"56bb136\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"63f53078\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ec0801e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1834d6fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c83ba41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f2b9225\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e1e1f03\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"5431d5dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"280f8c29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c5a2ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d23d29d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"45c84122\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"753d495c\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d64335a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"33165a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b21d0ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"777d6289\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"135af034\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"6c2bb9bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b3e2f07\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"3d65428d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7201,8341,'_elementor_edit_mode','builder'),(7202,8341,'_elementor_template_type','page'),(7203,8341,'_elementor_version','3.5.3'),(7204,8341,'_wp_page_template','default'),(7205,8341,'_elementor_data','[{\"id\":\"66d9274c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#08A4A4\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-banner1.png\",\"id\":5177},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"structure\":\"30\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"1928a8ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":44.833,\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"5beec435\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_color\":\"#161B39\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"200\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"33a2c6fd\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We have uncovered the five essential elements to maximizing its value.\",\"text_color\":\"#161B39\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"24925d54\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-effect\",\"text\":\"Get Started\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Rubik\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"btn_bg_color\":\"#161B39\",\"btn_bg_color_hover\":\"#FFFFFF\",\"btn_color_hover\":\"#161B39\",\"_css_classes\":\"rm-box-shadow\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"500\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"65aa3d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6600b4df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/man1.png\",\"id\":5181},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false},{\"id\":\"2cfb9516\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":11.414,\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":15,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21882f73\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":15,\"title\":\"Team member\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"5156958b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":102,\"title\":\"Active <br\\/>cases\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"363b9eca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":105,\"title\":\"Client\\u2019s reviews\",\"number_color\":\"#161B39\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Rubik\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17196f07\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"1ace439f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-115\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"92\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53da9c35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our <b>platform<\\/b> connects companies with displaced <b>workforces<\\/b>\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Services\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b9c5f37\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"num_words\":15,\"col_lg\":\"4\",\"col_xl\":\"6\",\"dots\":\"true\",\"infinite\":\"true\",\"limit\":9,\"slides_to_scroll\":\"3\",\"icon_item\":[]},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57373ad1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"2516ad38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1417a43a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"752bd6db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70e391c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"557a8b04\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5b1e55ec\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5c812ad7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26142520\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"48e6aa81\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"45fcd73e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2322b33a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6faec9f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"59d9a258\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54fc3338\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"56bb136\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"63f53078\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ec0801e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1834d6fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c83ba41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f2b9225\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e1e1f03\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"5431d5dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"280f8c29\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c5a2ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d23d29d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"45c84122\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"753d495c\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d64335a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"33165a5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b21d0ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"777d6289\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"135af034\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"6c2bb9bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b3e2f07\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"3d65428d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7206,8339,'_elementor_page_assets','a:0:{}'),(7216,8343,'_elementor_edit_mode','builder'),(7217,8343,'_elementor_template_type','page'),(7218,8343,'_elementor_version','3.5.3'),(7219,8344,'_elementor_edit_mode','builder'),(7220,8344,'_elementor_template_type','page'),(7221,8344,'_elementor_version','3.5.3'),(7222,8343,'_wp_page_template','default'),(7223,8343,'_elementor_data','[{\"id\":\"60bbe264\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"342e4d60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"11bfef8f\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50508342\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59a7b0f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72423698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"5396c634\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5bc048ae\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"346fb747\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"60702c0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"669f3211\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"40179f69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1d8cb501\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5d4439c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5b56c738\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3bc3e166\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3548b230\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33d7791e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"2bab7796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e47f6a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"74e2fbb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d76a199\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10382846\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a3274df\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a6a9411\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"617f1ac1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d58dc35\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"8d1237d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"10e7f564\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a7ab01\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ab94bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1325db2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38da9a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3fee5283\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"41a60064\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1381d064\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"41708464\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"15f5a107\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"427f3e42\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"452268c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"232cbb07\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b8aa42c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"543ef2a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"50c67413\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"edaecef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcde9a9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705f5b88\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1f4e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b750b5c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fb40b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6915b024\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"49bf385e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b8c51c8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"73ec0ee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"33d06873\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"35591283\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"37e4b589\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15b1093d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"5d16d4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4fa05f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4cf99f8d\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"74dbb166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3606f4bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4dbb2ef9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"35356a7c\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4779af35\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"107ef174\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"563e5826\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b792f45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"2c0bfb8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"50b5db7\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"458d4a65\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"5f0eac57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cc6a341\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2087f9ea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"1ee63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4576b8d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53c8d2c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"6f67541\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"330beeee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74ef9fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"36d0ccbc\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"402f9d21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e4bf5f5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48802337\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d37c3d8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"5259dd6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"201681ae\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"1daf89ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"303099d2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16d8ff85\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"793981e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31459368\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"eed083e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"1b79fb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"5656f604\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3a27beb6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"10d139a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"79035324\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"f18c5ed\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23359043\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c9f69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39804e54\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"4b8cdd5e\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"134eb07\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"65e1ec0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60ee75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"4148e288\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"19c5a8ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ae8b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"4e74d517\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"27ede2a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed40d1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"292668db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31403e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76068c39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"61c33637\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"35a957bd\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"eaec332\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"531632d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b49305e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6215c0f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"469b6b2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"798eadd2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f8f388d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b71f203\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"7513223a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60060381\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3754fdb3\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"29f0da27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79c22072\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"73898d79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125db514\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185dda0c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"20f60697\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c6cea6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1de207f9\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"274612ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"59da5f1e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129977f6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"450b91f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f4f6a57\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33a7c171\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"72e918cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26c61ac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2045d904\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dd2e5b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"6a12a972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d0e86fb\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"662b3f25\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"5195bb03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"163a767a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44266ce9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51834402\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"40e87386\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57b5b7b2\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"5452bccb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7224,8345,'_elementor_edit_mode','builder'),(7225,8345,'_elementor_template_type','page'),(7226,8345,'_elementor_version','3.5.3'),(7227,8345,'_wp_page_template','default'),(7228,8345,'_elementor_data','[{\"id\":\"60bbe264\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"342e4d60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"11bfef8f\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50508342\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59a7b0f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72423698\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"5396c634\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5bc048ae\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"346fb747\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"60702c0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"669f3211\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"40179f69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1d8cb501\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5d4439c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5b56c738\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3bc3e166\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3548b230\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33d7791e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"2bab7796\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e47f6a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"74e2fbb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d76a199\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10382846\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a3274df\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a6a9411\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"617f1ac1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d58dc35\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"8d1237d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"10e7f564\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a7ab01\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ab94bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1325db2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38da9a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3fee5283\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"41a60064\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1381d064\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"41708464\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"15f5a107\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"427f3e42\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"452268c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"232cbb07\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b8aa42c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"543ef2a8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"50c67413\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"edaecef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dcde9a9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"705f5b88\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1f4e72\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b750b5c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fb40b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6915b024\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"49bf385e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b8c51c8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"73ec0ee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"33d06873\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"35591283\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"37e4b589\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15b1093d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"5d16d4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d4fa05f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4cf99f8d\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"74dbb166\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3606f4bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4dbb2ef9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"35356a7c\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4779af35\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"107ef174\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"563e5826\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b792f45\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"2c0bfb8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"50b5db7\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"458d4a65\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"5f0eac57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cc6a341\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2087f9ea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"1ee63e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4576b8d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53c8d2c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"6f67541\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"330beeee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74ef9fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"36d0ccbc\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"402f9d21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e4bf5f5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48802337\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d37c3d8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"5259dd6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"201681ae\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"1daf89ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"303099d2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16d8ff85\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"793981e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31459368\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"eed083e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"1b79fb99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"5656f604\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3a27beb6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"10d139a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"79035324\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"f18c5ed\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23359043\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c9f69\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39804e54\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"4b8cdd5e\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"134eb07\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"65e1ec0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60ee75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"4148e288\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"19c5a8ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208ae8b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"4e74d517\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"27ede2a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed40d1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"292668db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31403e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76068c39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"61c33637\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"35a957bd\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"eaec332\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"531632d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b49305e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6215c0f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"469b6b2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"798eadd2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f8f388d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b71f203\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"7513223a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60060381\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3754fdb3\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"29f0da27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79c22072\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"73898d79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125db514\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"185dda0c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"20f60697\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49c6cea6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1de207f9\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"274612ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"59da5f1e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129977f6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"450b91f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f4f6a57\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33a7c171\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"72e918cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26c61ac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2045d904\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3dd2e5b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"6a12a972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d0e86fb\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"662b3f25\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"5195bb03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"163a767a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44266ce9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51834402\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"40e87386\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57b5b7b2\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"5452bccb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7229,8343,'_elementor_page_assets','a:0:{}'),(7231,8346,'_elementor_edit_mode','builder'),(7232,8346,'_elementor_template_type','wp-page'),(7233,8346,'_elementor_version','3.5.3'),(7234,8346,'_wp_page_template','default'),(7235,8346,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f84aae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a19acee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"9734541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8f802\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(7236,8346,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7237,8346,'_elementor_page_assets','a:0:{}'),(7238,8347,'_elementor_edit_mode','builder'),(7239,8347,'_elementor_template_type','wp-page'),(7240,8347,'_elementor_version','3.5.3'),(7241,8347,'_wp_page_template','default'),(7242,8347,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f84aae\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a19acee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":69,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":false},{\"id\":\"9734541\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8f802\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5903fdf\",\"ac_title\":\"Australia Head Office\"}],\"layout\":\"3\",\"ct_accordion_l3\":[{\"_id\":\"e48e6d0\",\"ac_title\":\"Australia Head Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\"},{\"ac_title\":\"America Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"13b7f8a\"},{\"ac_title\":\"UK Office\",\"ac_info\":\"[{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"30 Commercial Road, Australia\\\"},{\\\"icon\\\":\\\"fa fa-envelope\\\",\\\"content\\\":\\\"envato@mail.com\\\"},{\\\"icon\\\":\\\"fa fa-phone\\\",\\\"content\\\":\\\"+0188845215\\\"}]\",\"_id\":\"4df3891\"}],\"active_section\":1,\"box_icon\":{\"value\":\"flaticonv7 flaticonv7-tourism\",\"library\":\"flaticonv7\"},\"box_title\":\"Office Locations\",\"Box description\":\"We have many brunches to help you!\",\"box_desc\":\"We have many brunches to help you!\",\"_margin\":{\"unit\":\"px\",\"top\":\"-487\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":99,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(7243,8347,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7244,8347,'_elementor_page_assets','a:0:{}'),(7245,8348,'_elementor_edit_mode','builder'),(7246,8348,'_elementor_template_type','wp-page'),(7247,8348,'_elementor_version','3.5.3'),(7248,8348,'_wp_page_template','default'),(7249,8348,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d95f447\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"640c8abc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5d7d83\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce532c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"2f999b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43588600\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"97289ea\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e841b59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"520b90a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"368fc698\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dd28e24\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"260ae944\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"180dc8ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6587bdc6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"788c60be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"4cedc3ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7da67163\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"39b24f10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7250,8348,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7251,8348,'_elementor_page_assets','a:0:{}'),(7252,8349,'_elementor_edit_mode','builder'),(7253,8349,'_elementor_template_type','wp-page'),(7254,8349,'_elementor_version','3.5.3'),(7255,8349,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (7256,8349,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d95f447\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"640c8abc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5d7d83\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce532c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"2f999b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43588600\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"97289ea\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e841b59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"520b90a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"368fc698\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dd28e24\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"260ae944\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"180dc8ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6587bdc6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"788c60be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"4cedc3ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7da67163\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"39b24f10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7257,8349,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7258,8349,'_elementor_page_assets','a:0:{}'),(7259,8350,'_elementor_edit_mode','builder'),(7260,8350,'_elementor_template_type','wp-page'),(7261,8350,'_elementor_version','3.5.3'),(7262,8350,'_wp_page_template','default'),(7263,8350,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00f7994\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f79687\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"27c10fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17237\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"648937f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"15c2801\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9b12c86\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"92d346b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"ae693ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4c7dc3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"17d9d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4733835\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9a3695d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"e886d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"72f59f5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"34da39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4216ade\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3c624\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0592991\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"63c6a97\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"057ccb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"96f3e19\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"0c1b7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ebd71e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1d3296c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5cc0195\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"dc805a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"05d4684\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74ccb2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"60443d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4c12159\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a3a1280\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"8505099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7a90a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8f2cf7a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ef3c4aa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a5ecfc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c9a6f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62ebaec\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0e34edd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"4ea3471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d9d22de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b7d6c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"e994bbe\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e43b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fb6f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3875de6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"b8fc9dd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"d434829\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2dde8b7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc27b11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"0e78df7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a7fa1cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b49afd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39af768\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d07379\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"b06d02a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"da142e5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9eceb36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"d812b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"59dbfa9\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1658d99\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aef95b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2cdba5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8b4d63a\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"590554f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0a68ac0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"793676b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bbe59f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"63ac9af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ee3665f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ae8d76\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6e178d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ba3eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5616d61\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ee9cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae69d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f09e8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"9fa784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"1de1a5f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"142e1f2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"b1a6d12\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2a9f2a8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64612dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"804e100\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"39437d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"bfc5425\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e474297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"6dd4676\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aae6d0\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0d89241\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"ec0e2d1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d7c3980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"4a94ed0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"708b8b4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d95f447\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"640c8abc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5d7d83\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ce532c7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"2f999b23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"43588600\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"97289ea\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e841b59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"520b90a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"368fc698\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dd28e24\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"260ae944\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"180dc8ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6587bdc6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"788c60be\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"4cedc3ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7da67163\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"39b24f10\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(7264,8350,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7265,8350,'_elementor_page_assets','a:0:{}'),(7266,8351,'_elementor_edit_mode','builder'),(7267,8351,'_elementor_template_type','wp-page'),(7268,8351,'_elementor_version','3.5.3'),(7269,8351,'_wp_page_template','default'),(7270,8351,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7271,8351,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7272,8351,'_elementor_page_assets','a:0:{}'),(7273,8352,'_elementor_edit_mode','builder'),(7274,8352,'_elementor_template_type','wp-page'),(7275,8352,'_elementor_version','3.5.3'),(7276,8352,'_wp_page_template','default'),(7277,8352,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7278,8352,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7279,8352,'_elementor_page_assets','a:0:{}'),(7280,8353,'_elementor_edit_mode','builder'),(7281,8353,'_elementor_template_type','wp-page'),(7282,8353,'_elementor_version','3.5.3'),(7283,8353,'_wp_page_template','default'),(7284,8353,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"13671cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8caa37e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"f332c5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.332,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"565a04c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"b5d5924\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"7a1504a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7285,8353,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7286,8353,'_elementor_page_assets','a:0:{}'),(7287,8354,'_elementor_edit_mode','builder'),(7288,8354,'_elementor_template_type','wp-page'),(7289,8354,'_elementor_version','3.5.3'),(7290,8354,'_wp_page_template','default'),(7291,8354,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7292,8354,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(7293,8354,'_elementor_page_assets','a:0:{}'),(7297,237,'_wp_attachment_wp_user_avatar','2'),(7298,238,'_wp_attachment_wp_user_avatar','3'),(7299,1558,'_wp_attached_file','2019/12/favicon.png'),(7300,1558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2019/12/favicon.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:{}}}'),(7301,1940,'_wp_attached_file','2019/12/theme-16.jpg'),(7302,1940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2019/12/theme-16.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-16-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:21:\"theme-16-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:20:\"theme-16-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:20:\"theme-16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-16-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-16-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7303,1941,'_wp_attached_file','2019/12/theme-17.jpg'),(7304,1941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2019/12/theme-17.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-17-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-17-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-17-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:20:\"theme-17-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-17-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-17-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-17-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7305,1942,'_wp_attached_file','2019/12/theme-18.jpg'),(7306,1942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1000;s:4:\"file\";s:20:\"2019/12/theme-18.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-18-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-18-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-18-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-18-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-18-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-18-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7307,1943,'_wp_attached_file','2019/12/theme-19.jpg'),(7308,1943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-19.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-19-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-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:20:\"theme-19-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-19-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-19-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7309,1944,'_wp_attached_file','2019/12/theme-20.jpg'),(7310,1944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-20.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-20-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:20:\"theme-20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-20-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-20-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7311,1945,'_wp_attached_file','2019/12/theme-21.jpg'),(7312,1945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2019/12/theme-21.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-21-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-21-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:20:\"theme-21-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-21-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-21-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7313,1946,'_wp_attached_file','2019/12/theme-22.jpg'),(7314,1946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2019/12/theme-22.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-22-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-22-680x313.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-22-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7315,2382,'_wp_attached_file','2019/12/bg-section-04.jpg'),(7316,2382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:483;s:4:\"file\";s:25:\"2019/12/bg-section-04.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-section-04-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x258.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-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:25:\"bg-section-04-768x193.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x386.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7317,3590,'_wp_attached_file','2020/02/icon-analysis.png'),(7318,3590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:171;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2020/02/icon-analysis.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"icon-analysis-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(7319,3591,'_wp_attached_file','2020/02/icon-business.png'),(7320,3591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2020/02/icon-business.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:{}}}'),(7321,3592,'_wp_attached_file','2020/02/icon-chart-star.png'),(7322,3592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:118;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2020/02/icon-chart-star.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:{}}}'),(7323,3593,'_wp_attached_file','2020/02/icon-idea.png'),(7324,3593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2020/02/icon-idea.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:{}}}'),(7325,3594,'_wp_attached_file','2020/02/icon-money-bag.png'),(7326,3594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:117;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2020/02/icon-money-bag.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:{}}}'),(7327,3595,'_wp_attached_file','2020/02/icon-partnership.png'),(7328,3595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:137;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2020/02/icon-partnership.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:{}}}'),(7329,3941,'_wp_attached_file','2020/02/icon-pricing-01.png'),(7330,3941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:58;s:6:\"height\";i:56;s:4:\"file\";s:27:\"2020/02/icon-pricing-01.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:{}}}'),(7331,3942,'_wp_attached_file','2020/02/icon-pricing-02.png'),(7332,3942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:75;s:6:\"height\";i:57;s:4:\"file\";s:27:\"2020/02/icon-pricing-02.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:{}}}'),(7333,3943,'_wp_attached_file','2020/02/icon-pricing-03.png'),(7334,3943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:87;s:6:\"height\";i:58;s:4:\"file\";s:27:\"2020/02/icon-pricing-03.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:{}}}'),(7335,3944,'_wp_attached_file','2020/02/icon-pricing-04.png'),(7336,3944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:81;s:6:\"height\";i:64;s:4:\"file\";s:27:\"2020/02/icon-pricing-04.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:{}}}'),(7337,3982,'_wp_attached_file','2020/02/footer-gallery1.jpg'),(7338,3982,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/02/footer-gallery1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery1-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:27:\"footer-gallery1-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:27:\"footer-gallery1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery1-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7339,3983,'_wp_attached_file','2020/02/footer-gallery2.jpg'),(7340,3983,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/02/footer-gallery2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery2-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:27:\"footer-gallery2-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:27:\"footer-gallery2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery2-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7341,3984,'_wp_attached_file','2020/02/footer-gallery3.jpg'),(7342,3984,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/02/footer-gallery3.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery3-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:27:\"footer-gallery3-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:27:\"footer-gallery3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery3-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7343,3985,'_wp_attached_file','2020/02/footer-gallery4.jpg'),(7344,3985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/02/footer-gallery4.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery4-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:27:\"footer-gallery4-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:27:\"footer-gallery4-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery4-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7345,3986,'_wp_attached_file','2020/02/footer-gallery5.jpg'),(7346,3986,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/02/footer-gallery5.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery5-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:27:\"footer-gallery5-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:27:\"footer-gallery5-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery5-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7347,3987,'_wp_attached_file','2020/02/footer-gallery6.jpg'),(7348,3987,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:27:\"2020/02/footer-gallery6.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"footer-gallery6-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:27:\"footer-gallery6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"footer-gallery6-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;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:{}}}'),(7349,4110,'_wp_attached_file','2020/02/logo-dark.png'),(7350,4110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:607;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2020/02/logo-dark.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-dark-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-dark-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"logo-dark-600x160.png\";s:5:\"width\";i:600;s:6:\"height\";i:160;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:{}}}'),(7351,4111,'_wp_attached_file','2020/02/logo-light.png'),(7352,4111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:607;s:6:\"height\";i:160;s:4:\"file\";s:22:\"2020/02/logo-light.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logo-light-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-light-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"logo-light-600x160.png\";s:5:\"width\";i:600;s:6:\"height\";i:160;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:{}}}'),(7353,4120,'_wp_attached_file','2020/02/logo-footer.png'),(7354,4120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:607;s:6:\"height\";i:160;s:4:\"file\";s:23:\"2020/02/logo-footer.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo-footer-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-footer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"logo-footer-600x160.png\";s:5:\"width\";i:600;s:6:\"height\";i:160;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:{}}}'),(7355,4131,'_wp_attached_file','2019/10/bg-footer-top.png'),(7356,4131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:415;s:4:\"file\";s:25:\"2019/10/bg-footer-top.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-footer-top-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-footer-top-1024x221.png\";s:5:\"width\";i:1024;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-footer-top-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:25:\"bg-footer-top-768x166.png\";s:5:\"width\";i:768;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-footer-top-1536x332.png\";s:5:\"width\";i:1536;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-footer-top-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-footer-top-600x415.png\";s:5:\"width\";i:600;s:6:\"height\";i:415;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:{}}}'),(7357,4138,'_wp_attached_file','2020/02/h8-bg-video.jpg'),(7358,4138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:888;s:6:\"height\";i:796;s:4:\"file\";s:23:\"2020/02/h8-bg-video.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h8-bg-video-300x269.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"h8-bg-video-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:\"h8-bg-video-768x688.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"h8-bg-video-888x313.jpg\";s:5:\"width\";i:888;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"h8-bg-video-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7359,4145,'_wp_attached_file','2020/02/logo-shape.png'),(7360,4145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:122;s:4:\"file\";s:22:\"2020/02/logo-shape.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:{}}}'),(7361,4189,'_wp_attached_file','2019/11/theme24.jpg'),(7362,4189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:19:\"2019/11/theme24.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"theme24-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"theme24-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"theme24-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:\"theme24-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"theme24-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"theme24-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"theme24-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7363,4191,'_wp_attached_file','2020/02/h9-bg-header.png'),(7364,4191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:858;s:4:\"file\";s:24:\"2020/02/h9-bg-header.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h9-bg-header-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h9-bg-header-1024x458.png\";s:5:\"width\";i:1024;s:6:\"height\";i:458;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h9-bg-header-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:24:\"h9-bg-header-768x343.png\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"h9-bg-header-1536x686.png\";s:5:\"width\";i:1536;s:6:\"height\";i:686;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"h9-bg-header-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"h9-bg-header-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7365,4201,'_wp_attached_file','2020/02/h9-about.png'),(7366,4201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:630;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2020/02/h9-about.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h9-about-283x300.png\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h9-about-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h9-about-630x313.png\";s:5:\"width\";i:630;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"h9-about-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7367,4208,'_wp_attached_file','2020/02/h9-icon1.png'),(7368,4208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:56;s:6:\"height\";i:57;s:4:\"file\";s:20:\"2020/02/h9-icon1.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:{}}}'),(7369,4209,'_wp_attached_file','2020/02/h9-icon2.png'),(7370,4209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:56;s:6:\"height\";i:54;s:4:\"file\";s:20:\"2020/02/h9-icon2.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:{}}}'),(7371,4223,'_wp_attached_file','2020/02/h9-bg-section-01.png'),(7372,4223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1248;s:4:\"file\";s:28:\"2020/02/h9-bg-section-01.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h9-bg-section-01-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h9-bg-section-01-1024x666.png\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h9-bg-section-01-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:\"h9-bg-section-01-768x499.png\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h9-bg-section-01-1536x998.png\";s:5:\"width\";i:1536;s:6:\"height\";i:998;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h9-bg-section-01-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h9-bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7373,4231,'_wp_attached_file','2019/12/h9-service-icon1.png'),(7374,4231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:148;s:4:\"file\";s:28:\"2019/12/h9-service-icon1.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:{}}}'),(7375,4232,'_wp_attached_file','2019/12/h9-service-icon2.png'),(7376,4232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/12/h9-service-icon2.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:{}}}'),(7377,4233,'_wp_attached_file','2019/12/h9-service-icon3.png'),(7378,4233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/12/h9-service-icon3.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:{}}}'),(7379,4234,'_wp_attached_file','2019/12/h9-service-icon4.png'),(7380,4234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/12/h9-service-icon4.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:{}}}'),(7381,4235,'_wp_attached_file','2019/12/h9-service-icon5.png'),(7382,4235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/12/h9-service-icon5.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:{}}}'),(7383,4236,'_wp_attached_file','2019/12/h9-service-icon6.png'),(7384,4236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2019/12/h9-service-icon6.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:{}}}'),(7385,4265,'_wp_attached_file','2020/02/about-testimonial.jpg'),(7386,4265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:835;s:4:\"file\";s:29:\"2020/02/about-testimonial.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"about-testimonial-216x300.jpg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"about-testimonial-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"about-testimonial-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"about-testimonial-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7387,4336,'_wp_attached_file','2020/07/woocommerce-placeholder.png'),(7388,4336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2020/07/woocommerce-placeholder.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(7391,8181,'_edit_last','1'),(7392,8181,'_wp_page_template','default'),(7393,8181,'_elementor_edit_mode','builder'),(7394,8181,'_elementor_template_type','wp-post'),(7395,8181,'_elementor_version','2.9.2'),(7396,8181,'post_views_count','0'),(7397,8181,'_elementor_data','[{\"id\":\"4326daec\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000325\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer-top.png\",\"id\":4131},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"328e4d8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21643dd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/logo-footer.png\",\"id\":4120},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"278fdd55\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We work with a passion of taking challenges and creating new ones in advertising sector.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7f29922c\",\"elType\":\"widget\",\"settings\":{\"text\":\"About us \",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"21\",\"bottom\":\"0\",\"left\":\"21\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"_css_classes\":\"rm-box-shadow\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"351c5e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e0c56a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"line_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"50866f28\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Subscribe our newsletter to get our latest update & news\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1c6062e3\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"7ca6c958\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"75b21804\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52f8b334\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official info:\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"line_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5de46e57\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}}],\"content_color\":\"#CBCBCB\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#06B9EB\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4c94aa2c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#0E0E0E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fe585f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#CBCBCB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3fa26983\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51b42a22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"line_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3b50e36d\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"ids\":\"3982,3983,3984,3985,3986,3987\",\"columns\":\"3\",\"size\":\"medium\",\"link_type\":\"file\",\"orderby_random\":\"\",\"el_class\":\"\"}},\"elements\":[],\"widgetType\":\"wp-widget-media_gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76f1ec9c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#010011\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636b202c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"535f1ef9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"link_color\":\"#02D3F7\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7398,8181,'slide_template',''),(7399,8181,'_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:7:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:10:\"link_color\";i:1;s:16:\"link_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:11:\"btn_padding\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_line_height\";i:1;s:17:\"btn_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:3;s:27:\"title_typography_typography\";i:3;s:11:\"title_color\";i:3;s:10:\"line_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;s:14:\"_margin_mobile\";i:3;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:5:\"icons\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:23:\"wp-widget-media_gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}}'),(7400,1214,'_elementor_edit_mode','builder'),(7401,1214,'_elementor_template_type','section'),(7402,1214,'_elementor_version','2.8.2'),(7403,1214,'_wp_page_template','default'),(7404,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(7405,1214,'post_views_count','10'),(7406,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(7407,1217,'_elementor_edit_mode','builder'),(7408,1217,'_elementor_template_type','section'),(7409,1217,'_elementor_version','2.8.5'),(7410,1217,'_wp_page_template','default'),(7411,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$49\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(7412,1217,'post_views_count','6'),(7413,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(7414,1383,'_edit_last','1'),(7415,1383,'_wp_page_template','default'),(7416,1383,'_elementor_controls_usage','a:0:{}'),(7417,1383,'slide_template','default'),(7418,8357,'_edit_last','1'),(7419,8357,'_thumbnail_id','1540'),(7420,8357,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7421,8357,'slide_template',''),(7422,8357,'_wp_page_template','default'),(7423,8357,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7424,8357,'_elementor_edit_mode','builder'),(7425,8357,'_elementor_template_type','wp-post'),(7426,8357,'_elementor_version','2.8.1'),(7427,8357,'post_views_count','0'),(7428,8357,'_elementor_data','[{\"id\":\"340cbfdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cf659e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7372ea55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2868029f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2690ecfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1661230c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7fe8a59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53d82b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-11.jpg\",\"id\":1540},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"331e7402\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3deccc7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5318ff72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ad17de4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4da6f8\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42701245\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ff1f6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"316e9fea\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7429,8357,'case_study_except','This case study helps students understand the process of setting, reporting and eva luating financial performance.'),(7430,8357,'rs_page_bg_color',''),(7431,8358,'_edit_last','1'),(7432,8358,'_thumbnail_id','1536'),(7433,8358,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7434,8358,'slide_template',''),(7435,8358,'_wp_page_template','default'),(7436,8358,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7437,8358,'_elementor_edit_mode','builder'),(7438,8358,'_elementor_template_type','wp-post'),(7439,8358,'_elementor_version','2.8.1'),(7440,8358,'_elementor_data','[{\"id\":\"748ab28d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc47420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aaa25c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"660bb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a0a7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c74dc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bef493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78442ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"52b0f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db03d66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"731d0d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7270f1e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e9f61\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77721e8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71153a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"658f843d\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7441,8358,'rs_page_bg_color',''),(7442,8358,'_wp_old_slug','developing-a-program-to-be-alleviate-poverty'),(7443,8358,'case_study_except','This case study helps students understand the process of setting, reporting and eva luating financial performance.'),(7444,8359,'_edit_last','1'),(7445,8359,'_thumbnail_id','1537'),(7446,8359,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7447,8359,'slide_template',''),(7448,8359,'_wp_page_template','default'),(7449,8359,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7450,8359,'_elementor_edit_mode','builder'),(7451,8359,'_elementor_template_type','wp-post'),(7452,8359,'_elementor_version','2.8.1'),(7453,8359,'_elementor_data','[{\"id\":\"4b622493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"234c95f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6d3f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"34a4b4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f4d334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208b03a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3559fe71\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4758f776\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc799b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37f5a5ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"386c6f32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5b84a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5386a630\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30fe9fbc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1e70909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d3deaf6\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7454,8359,'rs_page_bg_color',''),(7455,8359,'_wp_old_slug','supporting-a-unique-global-public-private-partnership'),(7456,8359,'case_study_except','This case study helps students understand the process of setting, reporting and eva luating financial performance.'),(7457,8360,'_edit_last','1'),(7458,8360,'_thumbnail_id','1541'),(7459,8360,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(7460,8360,'slide_template',''),(7461,8360,'_wp_page_template','default'),(7462,8360,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7463,8360,'_elementor_edit_mode','builder'),(7464,8360,'_elementor_template_type','wp-post'),(7465,8360,'_elementor_version','2.8.1'),(7466,8360,'_elementor_data','[{\"id\":\"76b672b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584e90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273f5ae9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"5cb7221f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5a4cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7059f46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"54a846cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e5f03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"677fe665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62c7ab10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"23bc3b25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bc7c6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1946a97a\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40019989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"633b2d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52624d78\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(7467,8360,'rs_page_bg_color',''),(7468,8360,'_wp_old_slug','international-business-development-relationships'),(7469,8360,'case_study_except','This case study helps students understand the process of setting, reporting and eva luating financial performance.'),(7470,3808,'_edit_last','1'),(7471,3808,'_wp_page_template','default'),(7472,3808,'slide_template',''),(7473,3808,'_elementor_edit_mode','builder'),(7474,3808,'_elementor_template_type','wp-post'),(7475,3808,'_elementor_version','2.9.14'),(7476,3808,'_elementor_data','[{\"id\":\"49a4799f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"css_classes\":\"footer-bg-content\"},\"elements\":[{\"id\":\"374b0b41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6dba57e6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"30\"},\"elements\":[{\"id\":\"3d69daec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"116cf730\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":43.417000000000001591615728102624416351318359375,\"padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"15\",\"bottom\":\"24\",\"left\":\"70\",\"isLinked\":false},\"css_classes\":\"cta-custom-bg box-shadow\",\"_inline_size_tablet\":55,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"15\",\"bottom\":\"24\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"67555815\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to learn details about us?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"text_align_mobile\":\"left\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6431aa77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Download our brochure for details of our work\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6fda1b84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.2469999999999998863131622783839702606201171875,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"59564dfb\",\"elType\":\"widget\",\"settings\":{\"style\":\"btn-round\",\"text\":\"Download Brochure\",\"align\":\"right\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37f870fd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding\":{\"unit\":\"px\",\"top\":\"101\",\"right\":\"0\",\"bottom\":\"82\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap\":\"extended\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top left\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.939999999999999946709294817992486059665679931640625,\"sizes\":[]},\"background_size\":\"cover\",\"background_overlay_color\":\"#0e0e0e\",\"z_index\":1},\"elements\":[{\"id\":\"47cfe808\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":28.300000000000000710542735760100185871124267578125},\"elements\":[{\"id\":\"2590587f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/logo-footer.png\",\"id\":4120},\"image_size\":\"full\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"47\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-footer\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"61835cf\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"title\":\"\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"content_color\":\"#ffffff\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"icon_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"f1e6bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Open Hours:\",\"text_color\":\"#06B9EB\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"27a101a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2b4d822f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":37.6640000000000014779288903810083866119384765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17fbbbca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"fef2821\",\"elType\":\"widget\",\"settings\":{\"menu\":\"3\",\"style\":\"tow-col-light\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"62cbc3ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.7000000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"1b164699\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"28301162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Send us a newsletter to get update\",\"align\":\"left\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1bd1a02f\",\"elType\":\"widget\",\"settings\":{\"id\":\"default\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_color1\":\"#106CC7\",\"button_color2\":\"#106CC7\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"7f14558f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/10\\/app-store.png\",\"id\":1522},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"98c8da6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/10\\/google-play.png\",\"id\":1524},\"image_size\":\"full\",\"align\":\"left\",\"link_to\":\"custom\",\"link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"_css_classes\":\"el-inline\",\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e711f96\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2650057e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#242323\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"6191602c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f04d94\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a class=\\\"link-preset\\\" href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"link_color\":\"#06B9EB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(7477,3808,'_elementor_controls_usage','a:12:{s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:3;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:3;s:6:\"margin\";i:2;s:7:\"z_index\";i:1;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;}s:25:\"content_alignment_section\";a:1:{s:17:\"text_align_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:12:\"align_mobile\";i:1;s:10:\"text_color\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:4:{s:5:\"style\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:24:\"background_gradient_type\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:11:\"css_classes\";i:1;s:7:\"padding\";i:1;s:7:\"z_index\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:7:\"link_to\";i:3;s:4:\"link\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:10:\"icon_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:8:\"ct_title\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:11:\"title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:5:\"style\";a:1:{s:14:\"source_section\";a:2:{s:13:\"button_color1\";i:1;s:13:\"button_color2\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:10:\"link_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}}'),(7478,3872,'_elementor_edit_mode','builder'),(7479,3872,'_elementor_template_type','section'),(7480,3872,'_elementor_version','2.8.5'),(7481,3872,'post_views_count','2'),(7482,3872,'_wp_page_template','default'),(7483,3872,'_elementor_data','[{\"id\":\"7f5cbd63\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43484ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b6dc952\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$499\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3941},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"5ae0ebee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2a9c5d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3942},\"box_bg_color\":\"#0A0462\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"609a9e8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2b4161c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3943},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"12576590\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4a12a6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$699\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3944},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(7484,3872,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:14:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:9:\"icon_type\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(7485,3876,'_elementor_edit_mode','builder'),(7486,3876,'_elementor_template_type','section'),(7487,3876,'_elementor_version','2.8.5'),(7488,3876,'post_views_count','1'),(7489,3876,'_wp_page_template','default'),(7490,3876,'_elementor_data','[{\"id\":\"33a40038\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f276f89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"488fdba\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$99\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3941},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"8a7b665\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d68f4b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$199\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3942},\"box_bg_color\":\"#0A0462\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"f582dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"559076c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$299\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3943},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"4b28e043\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a416d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$399\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3944},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"},\"icon_type\":\"image\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(7491,3876,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:14:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:9:\"icon_type\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(7492,4112,'_elementor_edit_mode','builder'),(7493,4112,'_elementor_template_type','kit'),(7494,4112,'_elementor_version','2.9.2'),(7495,4337,'_edit_last','1'),(7496,4337,'_wp_page_template','default'),(7497,4337,'slide_template',''),(7498,4337,'rs_page_bg_color',''),(7499,4337,'_elementor_edit_mode','builder'),(7500,4337,'_elementor_template_type','wp-post'),(7501,4337,'_elementor_version','2.9.14'),(7502,4337,'_elementor_data','[{\"id\":\"53f3d05f\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2202a5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"38c1efdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"450f929c\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"2d70db70\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"66541fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30437083\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"78b1a72c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"4569cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4769430f\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"caca81d\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"ee551da\",\"label\":\"\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"76556506\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"3825ea37\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"12edbab7\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"label\":\"\",\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(7503,4337,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:18:\"title_space_bottom\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(7504,4339,'_edit_last','1'),(7505,4339,'_wp_page_template','default'),(7506,4339,'slide_template',''),(7507,4339,'rs_page_bg_color',''),(7508,4339,'_elementor_edit_mode','builder'),(7509,4339,'_elementor_template_type','wp-post'),(7510,4339,'_elementor_version','2.9.14'),(7511,4339,'_elementor_data','[{\"id\":\"6da3317b\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"3e350cf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"1aeb260\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interactive Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10ac2f3\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Testimonials\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/testimonials-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Blog Slider\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/blog-slider\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-newspaper\",\"library\":\"flaticonv3\"},\"_id\":\"25caa4d\",\"label\":\"\"},{\"text\":\"Portfolio Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/elements-portfolio-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"d1a9a4f\"},{\"text\":\"Service Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/service-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"be7ce10\"},{\"text\":\"Clients\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/clients\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"be34909\",\"label\":\"\"},{\"text\":\"History\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/history\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-history\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"7c5833e\"},{\"text\":\"Video Button\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/video-button\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-play-circle\",\"library\":\"fa-solid\"},\"_id\":\"f422155\",\"label\":\"\"},{\"text\":\"Columns\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/columns\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-columns\",\"library\":\"fa-solid\"},\"_id\":\"29a7115\",\"label\":\"\"},{\"text\":\"Row background\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/row-background\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-open-in-browser\",\"library\":\"material\"},\"_id\":\"f15ef7b\",\"label\":\"\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5756a36d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"69d5d202\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1033cd34\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Team Variations\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/team-variations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Buttons\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/buttons\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-dice-d6\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"cf56e8c\"},{\"text\":\"Tabs & Tours\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/tabs-tours\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ellipsis-h\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"2c2b9ad\"},{\"text\":\"Accordions & Toggles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/accordions-toggles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-server\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"0e5b944\"},{\"text\":\"Google Maps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/google-maps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-google-maps\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"b20f99c\"},{\"text\":\"Contact Forms 7\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/contact-forms-7\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-account-box-phone\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ec42890\"},{\"text\":\"Dividers\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dividers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-cut\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"3f7d182\"},{\"text\":\"Pricing Tables\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/pricing-tables\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-table\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"06e7c95\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"71f822fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5b4f67fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infographics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2175372b\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Counters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/counters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-sort-numeric-up\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Progress Bars\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/progress-bars\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-chart-line\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"53244c0\"},{\"text\":\"Icon With Text\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-with-text\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-gift\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"388c124\"},{\"text\":\"Icon Grid\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-grid\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-crown\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"10e9966\"},{\"text\":\"Image Box Fancy\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/image-box-fancy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-collection-folder-image\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ac49e20\"},{\"text\":\"Cover Boxes\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/cover-boxes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ticket-alt\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"caed56f\"},{\"text\":\"Newsletters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/newsletters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"d119127\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5b30ac1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"9075fca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Typography\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"487f6b6f\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Custom Fonts\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/custom-fonts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"material zmdi zmdi-font\",\"library\":\"material\"},\"label\":\"\"},{\"text\":\"Highlights\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/highlights\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-coffee\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ca12570\"},{\"text\":\"Blockquote\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/blockquote\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-right-quotation-mark\",\"library\":\"flaticonv2\"},\"label\":\"\",\"_id\":\"d26e2ad\"},{\"text\":\"Dropcaps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dropcaps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-width\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ee9bbb6\"},{\"text\":\"Message Box\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/message-box\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-assignment-alert\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"707a1d7\"},{\"text\":\"Lists\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/lists\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-list\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"19f958e\"},{\"text\":\"Titles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/titles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-height\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"e355a5d\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(7512,4339,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:18:\"title_space_bottom\";i:4;s:28:\"title_typography_font_weight\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(7535,8361,'_menu_item_type','custom'),(7536,8361,'_menu_item_menu_item_parent','0'),(7537,8361,'_menu_item_object_id','8361'),(7538,8361,'_menu_item_object','custom'),(7539,8361,'_menu_item_target',''),(7540,8361,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7541,8361,'_menu_item_xfn',''),(7542,8361,'_menu_item_url','#'),(7543,8362,'_menu_item_type','custom'),(7544,8362,'_menu_item_menu_item_parent','0'),(7545,8362,'_menu_item_object_id','8362'),(7546,8362,'_menu_item_object','custom'),(7547,8362,'_menu_item_target',''),(7548,8362,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7549,8362,'_menu_item_xfn',''),(7550,8362,'_menu_item_url','#'),(7551,8363,'_menu_item_type','custom'),(7552,8363,'_menu_item_menu_item_parent','8361'),(7553,8363,'_menu_item_object_id','8363'),(7554,8363,'_menu_item_object','custom'),(7555,8363,'_menu_item_target',''),(7556,8363,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7557,8363,'_menu_item_xfn',''),(7558,8363,'_menu_item_url','https://demo.casethemes.net/consultio-marketing/404-page/'),(7559,8364,'_menu_item_type','custom'),(7560,8364,'_menu_item_menu_item_parent','0'),(7561,8364,'_menu_item_object_id','8364'),(7562,8364,'_menu_item_object','custom'),(7563,8364,'_menu_item_target',''),(7564,8364,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7565,8364,'_menu_item_xfn',''),(7566,8364,'_menu_item_url','#'),(7567,8365,'_menu_item_type','custom'),(7568,8365,'_menu_item_menu_item_parent','8364'),(7569,8365,'_menu_item_object_id','8365'),(7570,8365,'_menu_item_object','custom'),(7571,8365,'_menu_item_target',''),(7572,8365,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7573,8365,'_menu_item_xfn',''),(7574,8365,'_menu_item_url','https://demo.casethemes.net/consultio-marketing/404-page/'),(7575,9,'_elementor_edit_mode','builder'),(7576,9,'_elementor_template_type','wp-page'),(7577,9,'_elementor_version','3.5.5'),(7578,9,'_wp_page_template','default'),(7579,9,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients .\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7580,9,'_edit_last','1'),(7581,9,'custom_header','1'),(7582,9,'custom_pagetitle','hide'),(7583,9,'custom_title',''),(7584,9,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7585,9,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7586,9,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7587,9,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7588,9,'show_sidebar_page',''),(7589,9,'sidebar_page_pos','right'),(7590,9,'custom_footer','0'),(7591,9,'footer_layout_custom',''),(7592,9,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7593,9,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7594,9,'slide_template','default'),(7595,9,'header_layout','10'),(7596,9,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7597,9,'page_h_phone',''),(7598,9,'page_h_time',''),(7599,9,'loading_page','themeoption'),(7600,9,'loading_type','style1'),(7601,9,'page_back_totop','themeoption'),(7602,9,'rs_page_bg_color','#ffffff'),(7603,9,'_elementor_controls_usage','a:21:{s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:6:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:19:\"image_height_mobile\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:38;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:37;s:19:\"_inline_size_tablet\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:5;s:6:\"margin\";i:7;s:11:\"css_classes\";i:3;s:13:\"margin_tablet\";i:4;s:14:\"padding_tablet\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:12:\"_css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_line_height\";i:10;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:33:\"title_typography_font_size_mobile\";i:10;s:35:\"title_typography_line_height_mobile\";i:10;s:18:\"title_space_bottom\";i:3;s:11:\"title_color\";i:2;s:25:\"title_space_bottom_mobile\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:9;s:15:\"sub_title_style\";i:9;s:15:\"sub_title_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:3:{s:5:\"space\";i:5;s:12:\"space_mobile\";i:1;s:12:\"space_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:15:\"stretch_section\";i:9;s:6:\"layout\";i:3;s:3:\"gap\";i:21;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:11:\"css_classes\";i:3;s:6:\"margin\";i:2;s:7:\"padding\";i:14;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:6;s:19:\"background_position\";i:6;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:6;s:16:\"background_color\";i:2;s:21:\"background_attachment\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"text\";i:3;s:8:\"btn_icon\";i:3;s:10:\"icon_align\";i:3;s:5:\"style\";i:3;s:4:\"link\";i:3;s:10:\"ct_animate\";i:3;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:1;s:18:\"btn_bg_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:15:\"_padding_tablet\";i:2;s:7:\"_margin\";i:7;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_content\";a:4:{s:9:\"icon_type\";i:2;s:10:\"icon_image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}s:13:\"section_style\";a:1:{s:5:\"style\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:2;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:1:{s:6:\"col_md\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:19:\"image_height_tablet\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:13:\"style_section\";a:2:{s:14:\"position_color\";i:1;s:17:\"description_color\";i:1;}s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:8:\"infinite\";i:1;s:6:\"arrows\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:3:{s:11:\"arrow_align\";i:1;s:5:\"style\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:6:\"layout\";i:1;s:12:\"content_list\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:5:{s:4:\"tabs\";i:2;s:8:\"tab_type\";i:1;s:16:\"title_color_type\";i:1;s:18:\"content_color_type\";i:1;s:9:\"tab_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:3;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7624,26,'_edit_last','1'),(7625,26,'_wp_page_template','default'),(7626,26,'custom_header',''),(7627,26,'header_layout','1'),(7628,26,'custom_pagetitle','hide'),(7629,26,'custom_title','About us'),(7630,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7631,26,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(7632,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7633,26,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(7634,26,'show_sidebar_page',''),(7635,26,'sidebar_page_pos','right'),(7636,26,'custom_footer',''),(7637,26,'footer_layout_custom',''),(7639,26,'_elementor_edit_mode','builder'),(7640,26,'_elementor_template_type','wp-page'),(7641,26,'_elementor_version','3.5.5'),(7642,26,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7643,26,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:4:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:1:{s:6:\"col_md\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7644,28,'_edit_last','1'),(7645,28,'_wp_page_template','default'),(7646,28,'custom_header',''),(7647,28,'header_layout','1'),(7648,28,'custom_pagetitle','show'),(7649,28,'custom_title',''),(7650,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(7651,28,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7652,28,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#eef2fb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(238,242,251,1)\";}'),(7653,28,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7654,28,'show_sidebar_page',''),(7655,28,'sidebar_page_pos','right'),(7656,28,'custom_footer',''),(7657,28,'footer_layout_custom',''),(7658,28,'slide_template','default'),(7659,28,'_elementor_edit_mode','builder'),(7660,28,'_elementor_template_type','wp-page'),(7661,28,'_elementor_version','2.8.2'),(7662,28,'_elementor_data','[{\"id\":\"53e9f59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d122fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.417000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"a1dc510\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"603daca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d3ffe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dc6244\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d5aaa1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88f2e7b\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"35409ba\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Jewel D Smith\",\"position\":\"Executive Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"80b51bd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-02.jpg\",\"id\":1691},\"title\":\"Alan Smith\",\"position\":\"Managing Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"46930fd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-03.jpg\",\"id\":1692},\"title\":\"Brad Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"82fc396\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"71c9864\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-04.jpg\",\"id\":1693},\"title\":\"Joyce\\u00a0Thompson\",\"position\":\"Asistant Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"62b6c11\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"10be1e6\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Joyce Thompson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"ffd748f\",\"btn_text\":\"Details\"}],\"col_md\":\"2\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"186df5b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f140b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"661063e1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7663,28,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7664,28,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7665,28,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7666,30,'_edit_last','1'),(7667,30,'_wp_page_template','default'),(7668,30,'custom_header',''),(7669,30,'header_layout','1'),(7670,30,'custom_pagetitle','show'),(7671,30,'custom_title',''),(7672,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1535\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-150x150.jpg\";}}'),(7673,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7674,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7675,30,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7676,30,'show_sidebar_page',''),(7677,30,'sidebar_page_pos','right'),(7678,30,'custom_footer',''),(7679,30,'footer_layout_custom',''),(7680,30,'slide_template','default'),(7681,30,'_elementor_edit_mode','builder'),(7682,30,'_elementor_template_type','wp-page'),(7683,30,'_elementor_data','[{\"id\":\"595e705\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbf6e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e58aff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"0bac2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64b4dfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d88f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"74\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"325916e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60e5f30\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"0f620d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"346929e\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d6e093c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f503527\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fee7573\",\"elType\":\"widget\",\"settings\":{\"title\":\"Still have you any problem  for solutions?\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"d0a7700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d6687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership\\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6783ba1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dd5ac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"1bf7025\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1655275\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"daf846a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"ee30c25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.417000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6017a24\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"1615\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4290b7d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fc683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"65d291e6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a2d1f31\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7684,30,'_elementor_version','2.7.5'),(7685,30,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7686,30,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7687,30,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:2;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:12:\"ct_accordion\";i:2;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7688,32,'_edit_last','1'),(7689,32,'_wp_page_template','default'),(7690,32,'custom_header',''),(7691,32,'header_layout','1'),(7692,32,'custom_pagetitle','show'),(7693,32,'custom_title',''),(7694,32,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(7695,32,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7696,32,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7697,32,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7698,32,'show_sidebar_page',''),(7699,32,'sidebar_page_pos','right'),(7700,32,'custom_footer',''),(7701,32,'footer_layout_custom',''),(7702,32,'slide_template','default'),(7703,32,'_elementor_edit_mode','builder'),(7704,32,'_elementor_template_type','wp-page'),(7705,32,'_elementor_version','2.7.5'),(7706,32,'_elementor_data','[{\"id\":\"47aaa16\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2be9dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2740d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e3c1a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e8890\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\\nconnection, we create platforms.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8389a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"0632e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ba3c267\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1214\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1217\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5afa04\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2854a98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1927c5f8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7707,32,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7708,32,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7709,32,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7710,123,'_edit_last','1'),(7711,123,'_wp_page_template','default'),(7712,123,'custom_header',''),(7713,123,'header_layout','1'),(7714,123,'custom_pagetitle','themeoption'),(7715,123,'custom_title',''),(7716,123,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7717,123,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7718,123,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7719,123,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(7720,123,'show_sidebar_page',''),(7721,123,'sidebar_page_pos','right'),(7722,123,'custom_footer',''),(7723,123,'footer_layout_custom',''),(7724,123,'slide_template','default'),(7725,123,'_elementor_edit_mode','builder'),(7726,123,'_elementor_template_type','wp-page'),(7727,123,'_elementor_version','2.8.1'),(7728,123,'_elementor_data','[{\"id\":\"4f12f44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607e712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33eb12a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"20cca318\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dc34528\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"984afbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"baf5018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"be0576a\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"true\",\"limit\":6,\"col_md\":\"2\",\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33c065af\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8afbc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2eb38a40\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7729,123,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7730,123,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7731,123,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7732,125,'_edit_last','1'),(7733,125,'_wp_page_template','default'),(7734,125,'custom_header',''),(7735,125,'header_layout','1'),(7736,125,'custom_pagetitle','show'),(7737,125,'custom_title','Blog Grid'),(7738,125,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7739,125,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7740,125,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7741,125,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7742,125,'show_sidebar_page','1'),(7743,125,'sidebar_page_pos','left'),(7744,125,'custom_footer',''),(7745,125,'footer_layout_custom',''),(7746,125,'slide_template','default'),(7747,125,'_elementor_edit_mode','builder'),(7748,125,'_elementor_template_type','wp-page'),(7749,125,'_elementor_version','2.8.2'),(7750,125,'_elementor_data','[{\"id\":\"928f20f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"b1ac6d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c0262c\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(7751,125,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(7760,8367,'_menu_item_type','post_type'),(7761,8367,'_menu_item_menu_item_parent','8388'),(7762,8367,'_menu_item_object_id','32'),(7763,8367,'_menu_item_object','page'),(7764,8367,'_menu_item_target',''),(7765,8367,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7766,8367,'_menu_item_xfn',''),(7767,8367,'_menu_item_url',''),(7768,8368,'_menu_item_type','custom'),(7769,8368,'_menu_item_menu_item_parent','0'),(7770,8368,'_menu_item_object_id','8368'),(7771,8368,'_menu_item_object','custom'),(7772,8368,'_menu_item_target',''),(7773,8368,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7774,8368,'_menu_item_xfn',''),(7775,8368,'_menu_item_url','#'),(7776,8369,'_menu_item_type','custom'),(7777,8369,'_menu_item_menu_item_parent','0'),(7778,8369,'_menu_item_object_id','8369'),(7779,8369,'_menu_item_object','custom'),(7780,8369,'_menu_item_target',''),(7781,8369,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7782,8369,'_menu_item_xfn',''),(7783,8369,'_menu_item_url','#'),(7784,8370,'_menu_item_type','custom'),(7785,8370,'_menu_item_menu_item_parent','0'),(7786,8370,'_menu_item_object_id','8370'),(7787,8370,'_menu_item_object','custom'),(7788,8370,'_menu_item_target',''),(7789,8370,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7790,8370,'_menu_item_xfn',''),(7791,8370,'_menu_item_url','#'),(7792,8371,'_menu_item_type','custom'),(7793,8371,'_menu_item_menu_item_parent','0'),(7794,8371,'_menu_item_object_id','8371'),(7795,8371,'_menu_item_object','custom'),(7796,8371,'_menu_item_target',''),(7797,8371,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7798,8371,'_menu_item_xfn',''),(7799,8371,'_menu_item_url','#section-home'),(7800,8372,'_menu_item_type','custom'),(7801,8372,'_menu_item_menu_item_parent','0'),(7802,8372,'_menu_item_object_id','8372'),(7803,8372,'_menu_item_object','custom'),(7804,8372,'_menu_item_target',''),(7805,8372,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7806,8372,'_menu_item_xfn',''),(7807,8372,'_menu_item_url','#section-services'),(7808,8373,'_menu_item_type','custom'),(7809,8373,'_menu_item_menu_item_parent','0'),(7810,8373,'_menu_item_object_id','8373'),(7811,8373,'_menu_item_object','custom'),(7812,8373,'_menu_item_target',''),(7813,8373,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7814,8373,'_menu_item_xfn',''),(7815,8373,'_menu_item_url','#section-about'),(7816,8374,'_menu_item_type','custom'),(7817,8374,'_menu_item_menu_item_parent','0'),(7818,8374,'_menu_item_object_id','8374'),(7819,8374,'_menu_item_object','custom'),(7820,8374,'_menu_item_target',''),(7821,8374,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7822,8374,'_menu_item_xfn',''),(7823,8374,'_menu_item_url','#section-case-studies'),(7824,8375,'_menu_item_type','custom'),(7825,8375,'_menu_item_menu_item_parent','0'),(7826,8375,'_menu_item_object_id','8375'),(7827,8375,'_menu_item_object','custom'),(7828,8375,'_menu_item_target',''),(7829,8375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7830,8375,'_menu_item_xfn',''),(7831,8375,'_menu_item_url','#section-testimonils'),(7832,8376,'_menu_item_type','custom'),(7833,8376,'_menu_item_menu_item_parent','0'),(7834,8376,'_menu_item_object_id','8376'),(7835,8376,'_menu_item_object','custom'),(7836,8376,'_menu_item_target',''),(7837,8376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7838,8376,'_menu_item_xfn',''),(7839,8376,'_menu_item_url','#section-pricing'),(7840,127,'_edit_last','1'),(7841,127,'_wp_page_template','default'),(7842,127,'custom_header',''),(7843,127,'header_layout','1'),(7844,127,'custom_pagetitle','show'),(7845,127,'custom_title','Blog Grid'),(7846,127,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7847,127,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7848,127,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7849,127,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7850,127,'show_sidebar_page','1'),(7851,127,'sidebar_page_pos','right'),(7852,127,'custom_footer',''),(7853,127,'footer_layout_custom',''),(7854,127,'slide_template','default'),(7855,127,'_elementor_edit_mode','builder'),(7856,127,'_elementor_template_type','wp-page'),(7857,127,'_elementor_version','2.8.2'),(7858,127,'_elementor_data','[{\"id\":\"9549dba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"fba6296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"94a4695\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(7859,127,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(7860,129,'_edit_last','1'),(7861,129,'_wp_page_template','default'),(7862,129,'custom_header',''),(7863,129,'header_layout','1'),(7864,129,'custom_pagetitle','show'),(7865,129,'custom_title','Blog Grid'),(7866,129,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7867,129,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7868,129,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7869,129,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(7870,129,'show_sidebar_page',''),(7871,129,'sidebar_page_pos','right'),(7872,129,'custom_footer',''),(7873,129,'footer_layout_custom',''),(7874,129,'slide_template','default'),(7875,129,'_elementor_edit_mode','builder'),(7876,129,'_elementor_template_type','wp-page'),(7877,129,'_elementor_data','[{\"id\":\"fb04492\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3c5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1a14f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Our Service area\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f25fa3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d957c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df308c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"extended\"},\"elements\":[{\"id\":\"95c454c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b97f62b\",\"elType\":\"widget\",\"settings\":{\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"filter_alignment\":\"right\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef66b82\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4112df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30b600db\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7878,129,'_elementor_version','2.8.2'),(7879,129,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:10:\"ct_animate\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"filter_alignment\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:4:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;}}}}}'),(7880,132,'_edit_last','1'),(7881,132,'_wp_page_template','default'),(7882,132,'_elementor_controls_usage','a:0:{}'),(7883,132,'custom_header',''),(7884,132,'header_layout','1'),(7885,132,'custom_pagetitle','themeoption'),(7886,132,'custom_title',''),(7887,132,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7888,132,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7889,132,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7890,132,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7891,132,'show_sidebar_page',''),(7892,132,'sidebar_page_pos','right'),(7893,132,'custom_footer',''),(7894,132,'footer_layout_custom',''),(7895,132,'slide_template','default'),(7896,134,'_edit_last','1'),(7897,134,'_wp_page_template','template-parts/blog-classic.php'),(7898,134,'_elementor_controls_usage','a:0:{}'),(7899,134,'custom_header',''),(7900,134,'header_layout','1'),(7901,134,'custom_pagetitle','show'),(7902,134,'custom_title','Blog Standard'),(7903,134,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7904,134,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7905,134,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7906,134,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7907,134,'show_sidebar_page','1'),(7908,134,'sidebar_page_pos','left'),(7909,134,'custom_footer',''),(7910,134,'footer_layout_custom',''),(7911,134,'slide_template','default'),(7912,136,'_edit_last','1'),(7913,136,'_wp_page_template','template-parts/blog-classic.php'),(7914,136,'_elementor_controls_usage','a:0:{}'),(7915,136,'custom_header',''),(7916,136,'header_layout','1'),(7917,136,'custom_pagetitle','show'),(7918,136,'custom_title','Blog Standard'),(7919,136,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7920,136,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7921,136,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7922,136,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7923,136,'show_sidebar_page',''),(7924,136,'sidebar_page_pos','right'),(7925,136,'custom_footer',''),(7926,136,'footer_layout_custom',''),(7927,136,'slide_template','default'),(7928,362,'_edit_last','1'),(7929,362,'_wp_page_template','default'),(7930,362,'custom_header',''),(7931,362,'header_layout','1'),(7932,362,'custom_pagetitle','themeoption'),(7933,362,'custom_title',''),(7934,362,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/gallery-02.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1553\";s:6:\"height\";s:3:\"600\";s:5:\"width\";s:3:\"600\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/gallery-02-150x150.jpg\";}}'),(7935,362,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7936,362,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7937,362,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7938,362,'show_sidebar_page',''),(7939,362,'sidebar_page_pos','right'),(7940,362,'custom_footer',''),(7941,362,'footer_layout_custom',''),(7942,362,'slide_template','default'),(7943,362,'_elementor_edit_mode','builder'),(7944,362,'_elementor_template_type','wp-page'),(7945,362,'_elementor_version','2.7.5'),(7946,362,'_elementor_data','[{\"id\":\"2645f20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33d032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0f31e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"FAQ\",\"style\":\"st-line-top1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"89f4b61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80ad649\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2d4a6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"de3f4f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"605e76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"email\":\"info@consulio.com \",\"phone\":\"+123 (4567) 890\",\"address\":\"380 St Kilda Road, Melbourne VIC 3004, Australia\",\"icons\":[{\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7cf43ed\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"def76d5\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"35b4313\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b97b712\"}],\"btn_text\":\"Appionment\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_team_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0ab90\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2a9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5bc25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b73102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3d2e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b4a0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17e0426\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-skill\",\"library\":\"flaticon\"},\"title_text\":\"Expert team member\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"eaf1b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"faff530\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-setting-spanner\",\"library\":\"flaticon\"},\"title_text\":\"24\\/7 Customer support\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1927758b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aafda89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29260a70\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7947,362,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7948,362,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7949,362,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;}}}}s:15:\"ct_team_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_Content\";a:9:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:8:\"position\";i:1;s:5:\"email\";i:1;s:5:\"phone\";i:1;s:7:\"address\";i:1;s:5:\"icons\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(7950,367,'_edit_last','1'),(7951,367,'_wp_page_template','default'),(7952,367,'custom_header',''),(7953,367,'header_layout','1'),(7954,367,'custom_pagetitle','show'),(7955,367,'custom_title',''),(7956,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(7957,367,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7958,367,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#e4eaee\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(228,234,238,1)\";}'),(7959,367,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7960,367,'show_sidebar_page',''),(7961,367,'sidebar_page_pos','right'),(7962,367,'custom_footer',''),(7963,367,'footer_layout_custom',''),(7964,367,'slide_template','default'),(7965,367,'_elementor_edit_mode','builder'),(7966,367,'_elementor_template_type','wp-page'),(7967,367,'_elementor_version','2.8.2'),(7968,367,'_elementor_data','[{\"id\":\"d23e4f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cb9323b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.75},\"elements\":[{\"id\":\"7f58838\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"daa1215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.25,\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cb6926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01c0a8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1695462\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b6c0336\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"802cda4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"cae1995\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"3804c9a\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"9cc7cf6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Carolyn Smith\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"45dd5f6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Pamela Johnson\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"5a0d1f7\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ed0847\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d04724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d8484a6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7969,367,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7970,367,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(7971,367,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7972,407,'_edit_last','1'),(7973,407,'_wp_page_template','default'),(7974,407,'custom_header',''),(7975,407,'header_layout','1'),(7976,407,'custom_pagetitle','show'),(7977,407,'custom_title','Services'),(7978,407,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7979,407,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(7980,407,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(7981,407,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(7982,407,'show_sidebar_page',''),(7983,407,'sidebar_page_pos','right'),(7984,407,'custom_footer',''),(7985,407,'footer_layout_custom',''),(7986,407,'slide_template','default'),(7987,407,'_elementor_edit_mode','builder'),(7988,407,'_elementor_template_type','wp-page'),(7989,407,'_elementor_version','2.8.2'),(7990,407,'_elementor_data','[{\"id\":\"f019bad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ce29c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"d3b6aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"877c444\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a619a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d640f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"1e2ce89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16d5b63\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"consultant|service-category\"],\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b5b5683\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4106b489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b8ee2df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(7991,407,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(7992,409,'_edit_last','1'),(7993,409,'_wp_page_template','default'),(7994,409,'custom_header',''),(7995,409,'header_layout','1'),(7996,409,'custom_pagetitle','show'),(7997,409,'custom_title','Services'),(7998,409,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(7999,409,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8000,409,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8001,409,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8002,409,'show_sidebar_page',''),(8003,409,'sidebar_page_pos','right'),(8004,409,'custom_footer',''),(8005,409,'footer_layout_custom',''),(8006,409,'slide_template','default'),(8007,409,'_elementor_edit_mode','builder'),(8008,409,'_elementor_template_type','wp-page'),(8009,409,'_elementor_version','2.9.2'),(8010,409,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"consultant|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8011,409,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8012,415,'_edit_last','1'),(8013,415,'_wp_page_template','default'),(8014,415,'custom_header',''),(8015,415,'header_layout','1'),(8016,415,'custom_pagetitle','themeoption'),(8017,415,'custom_title',''),(8018,415,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8019,415,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8020,415,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8021,415,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8022,415,'show_sidebar_page',''),(8023,415,'sidebar_page_pos','right'),(8024,415,'custom_footer',''),(8025,415,'footer_layout_custom',''),(8026,415,'slide_template','default'),(8027,415,'_elementor_edit_mode','builder'),(8028,415,'_elementor_template_type','wp-page'),(8029,415,'_elementor_data','[{\"id\":\"934d137\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b2993d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"d7e414a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"c5cb0c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255149c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"228c27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf73b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7856011\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dc1332\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7156578d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"782c88ec\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8030,415,'_elementor_version','2.8.2'),(8031,415,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8032,417,'_edit_last','1'),(8033,417,'_wp_page_template','default'),(8034,417,'custom_header',''),(8035,417,'header_layout','1'),(8036,417,'custom_pagetitle','themeoption'),(8037,417,'custom_title',''),(8038,417,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8039,417,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8040,417,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8041,417,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8042,417,'show_sidebar_page',''),(8043,417,'sidebar_page_pos','right'),(8044,417,'custom_footer',''),(8045,417,'footer_layout_custom',''),(8046,417,'slide_template','default'),(8047,417,'_elementor_edit_mode','builder'),(8048,417,'_elementor_template_type','wp-page'),(8049,417,'_elementor_version','2.8.2'),(8050,417,'_elementor_data','[{\"id\":\"480e3e3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29909522\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"3a5a486b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2047a9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c91bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"437e1689\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"17\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2cfad8b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52e98c5\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"layout\":\"2\",\"limit\":5,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ed166d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c7084ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"185e01e3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8051,417,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:10:\"ct_animate\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8052,483,'_edit_last','1'),(8053,483,'_wp_page_template','default'),(8054,483,'custom_header','1'),(8055,483,'header_layout','0'),(8056,483,'custom_pagetitle','hide'),(8057,483,'custom_title',''),(8058,483,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8059,483,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8060,483,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8061,483,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8062,483,'show_sidebar_page',''),(8063,483,'sidebar_page_pos','right'),(8064,483,'custom_footer','1'),(8065,483,'footer_layout_custom','1383'),(8066,483,'slide_template','default'),(8067,483,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8068,483,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8069,483,'_elementor_edit_mode','builder'),(8070,483,'_elementor_template_type','wp-page'),(8071,483,'_elementor_version','2.8.5'),(8072,483,'_elementor_data','[{\"id\":\"d606d5f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/bg-landing.jpg\",\"id\":2891},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/overlay-landing.png\",\"id\":2892},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"165\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bae5981\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"eec96ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/10\\/logo-footer.png\",\"id\":1513},\"image_size\":\"full\",\"align\":\"center\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"43\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"logo-landing wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d5f8be1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56fd2a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"bf7474d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"f7fa48e\",\"elType\":\"widget\",\"settings\":{\"title\":\"One solution for all kinds of Consulting <cite>business<\\/cite>\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"text_align\":\"center\",\"_css_classes\":\"h-text-shadow\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"304d75c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.995999999999998664179656771011650562286376953125,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa90cd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio is a responsive corporate, business & financial services WordPress theme. It is suitable for all business & corporate websites. \",\"align\":\"center\",\"text_color\":\"#FEFEFE\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"11\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4444c9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"f63d86e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0562312\",\"elType\":\"widget\",\"settings\":{\"text\":\"Purchase Now!\",\"align\":\"right\",\"_css_classes\":\"btn-landing\",\"align_mobile\":\"center\",\"link\":{\"url\":\"https:\\/\\/themeforest.net\\/cart\\/add_items?ref=case-themes&item_ids=25376496\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"d4cb7ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c65eb9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Demos\",\"align\":\"left\",\"_css_classes\":\"btn-landing\",\"align_mobile\":\"center\",\"link\":{\"url\":\"#demos\",\"is_external\":\"\",\"nofollow\":\"\"},\"style\":\"btn-white\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8e456f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"demos\"},\"elements\":[{\"id\":\"c9aa27e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b1c96fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"31\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"da6ecc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"317aec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625},\"elements\":[{\"id\":\"640649d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Creat a successful website\",\"align\":\"center\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45347a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"06+ Awesome Demos\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_align\":\"center\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"66de5f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio is a Consulting, Finance &amp; Business Theme. It is a clean and modern Business design. You can use it for any kind website like consultancy, Adviser, Business, Consultant, Corporate, Finance, Financiall.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"0997322\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca9218b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"css_classes\":\"landing-boxed\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"44\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8603d95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"9e8c713\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bf784fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9c45d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/demo1.jpg\",\"id\":2901},\"title\":\"Consultio - <cite>FINANCE CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"c312ec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab6e0e2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/demo2.jpg\",\"id\":2902},\"title\":\"Consultio - <cite>BUSINESS CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time2\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"073bfcd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5c5654\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/demo3.jpg\",\"id\":2903},\"title\":\"Consultio - <cite>LAW CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time3\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dbe88\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"12a8394\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58bcb94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/demo4.jpg\",\"id\":2904},\"title\":\"Consultio - <cite>STARTUP CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"90a1285\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52701aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/01\\/demo7.jpg\",\"id\":3021},\"title\":\"Consultio - <cite>IT SOLUTION<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time6\",\"label\":\"NEW\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"2ecf0ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8e368b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/01\\/demo8.jpg\",\"id\":3185},\"title\":\"Consultio - <cite>TAX CONSULTING<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time5\",\"label\":\"New\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9ac6f27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"1d54154\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44960fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/demo9.jpg\",\"id\":3934},\"title\":\"Consultio - <cite>HUMAN RESOURCE<\\/cite>\",\"btn_text\":\"View now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"on\",\"nofollow\":\"\"},\"ct_effect\":\"ct-fade-in-up\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\",\"label\":\"Coming Soon\"},\"elements\":[],\"widgetType\":\"ct_showcase\"}],\"isInner\":true},{\"id\":\"fa3e334\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"704416c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"3\",\"bottom\":\"22\",\"left\":\"3\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d41c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#C1282A\",\"background_color_b\":\"#D1651A\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/landing-section-01.png\",\"id\":2915},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(34,34,34,0.24)\"},\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"308\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[{\"id\":\"a5692be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23dd850\",\"elType\":\"widget\",\"settings\":{\"title\":\"# Fully Responsive and Retina Ready\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"text_align\":\"center\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bff920\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"e4831ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"c8a8285\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/devices.png\",\"id\":1437},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-267\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"daed06b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/landing-devices.png\",\"id\":2917},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-267\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eeca8d9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":0,\"bottom\":\"66\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76c2577\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"b79ad4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.3319999999999936335370875895023345947265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"05776c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Features of Our Theme\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"text_align\":\"center\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d4e6cef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consultio allows you to create beautiful website with some awesome features. We have built this theme as user friendly and we have made by Elementor.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c85d3e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"39a0830\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"584d03b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2caf3e6\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"1 Click Demo Install\",\"description_text\":\"This works by importing wordpress content, widgets and theme options.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-01.png\",\"id\":2920},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"f5cb727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"0014491\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Elementor\",\"description_text\":\"By Elementor, the developers can find the easy way to work on theme.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-02.png\",\"id\":2921},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time2\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"95d87fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"01ac667\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Redux Framework\",\"description_text\":\"Redux is a simple, truly extensible options framework for WordPress Theme. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-03.png\",\"id\":2922},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time3\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"9ba3c5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f0b90c5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Contact Form 7 \",\"description_text\":\"The extension can be of great help to embrace fast online payment facility. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-04.png\",\"id\":2923},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time4\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ba0abe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"c6aeed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"ffb13e2\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Slider Revolution\",\"description_text\":\"It includes Revolution Slider for easy slide building. $49 value FREE! \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-05.png\",\"id\":2924},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time5\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"9885322\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"aa01de9\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"SEO Friendly \",\"description_text\":\"Theme perfectly supports search engine algorithms. Fully SEO Friendly. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-06.png\",\"id\":2925},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time6\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"e192870\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c3edfad\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Great Support! \",\"description_text\":\"Get a high quality support service with us, Submit a ticket to our form. \",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-07.png\",\"id\":2926},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time7\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6450046\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"09d5e3a\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Fully Responsive \",\"description_text\":\"Fully responsive, retina ready created for all types of devices.\",\"layout\":\"4\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/feature-icon-08.png\",\"id\":2927},\"ct_effect\":\"ct-fade-3d\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"animate-time8\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23f5a24\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17a8858\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2182d6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/landing-footer.png\",\"id\":2937},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95455bd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"gradient\",\"background_color\":\"#C1282A\",\"background_color_b\":\"#D1651A\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":-90,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":2,\"blur\":10,\"spread\":0,\"color\":\"rgba(34,34,34,0.24)\"},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d4bda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8b8c224\",\"elType\":\"widget\",\"settings\":{\"title\":\"Thanks a lot!\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_weight\":\"700\",\"typography_font_style\":\"italic\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(8073,483,'_elementor_controls_usage','a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;s:5:\"align\";i:4;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:2;s:12:\"_css_classes\";i:2;s:7:\"_margin\";i:3;s:8:\"_z_index\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:35;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:28;s:19:\"_inline_size_tablet\";i:11;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:9;s:14:\"padding_mobile\";i:10;s:7:\"padding\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:10:{s:5:\"title\";i:4;s:11:\"title_color\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:4;s:28:\"title_typography_line_height\";i:1;s:18:\"title_space_bottom\";i:3;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:4;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:14;s:15:\"stretch_section\";i:5;s:6:\"layout\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:4;s:11:\"_element_id\";i:1;s:14:\"padding_mobile\";i:1;s:11:\"css_classes\";i:1;s:13:\"margin_tablet\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:3;s:25:\"background_overlay_repeat\";i:3;s:23:\"background_overlay_size\";i:3;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:4;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:3;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:4;s:15:\"_padding_tablet\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:12:\"align_mobile\";i:2;s:4:\"link\";i:2;s:10:\"ct_animate\";i:2;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:11:\"ct_showcase\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:7;s:5:\"title\";i:7;s:8:\"btn_text\";i:7;s:11:\"button_link\";i:7;s:10:\"ct_animate\";i:7;s:5:\"label\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:7;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:4:{s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:9:\"icon_type\";i:8;s:10:\"icon_image\";i:8;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:8;s:10:\"ct_animate\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:8;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:21:\"typography_font_style\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}}'),(8074,748,'_elementor_controls_usage','a:0:{}'),(8075,749,'_elementor_controls_usage','a:0:{}'),(8076,750,'_elementor_controls_usage','a:0:{}'),(8077,751,'_elementor_controls_usage','a:0:{}'),(8078,783,'_edit_last','1'),(8079,783,'_wp_page_template','default'),(8080,783,'_elementor_controls_usage','a:0:{}'),(8081,783,'custom_header',''),(8082,783,'header_layout','1'),(8083,783,'custom_pagetitle','themeoption'),(8084,783,'custom_title',''),(8085,783,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8086,783,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8087,783,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8088,783,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8089,783,'show_sidebar_page',''),(8090,783,'sidebar_page_pos','right'),(8091,783,'custom_footer',''),(8092,783,'footer_layout_custom',''),(8093,783,'slide_template','default'),(8094,1972,'_edit_last','1'),(8095,1972,'_wp_page_template','default'),(8096,1972,'custom_header',''),(8097,1972,'header_layout','1'),(8098,1972,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8099,1972,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8100,1972,'custom_pagetitle','show'),(8101,1972,'custom_title',''),(8102,1972,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1532\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-150x150.jpg\";}}'),(8103,1972,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8104,1972,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8105,1972,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8106,1972,'show_sidebar_page',''),(8107,1972,'sidebar_page_pos','right'),(8108,1972,'custom_footer',''),(8109,1972,'footer_layout_custom',''),(8110,1972,'slide_template','default'),(8111,1972,'_elementor_edit_mode','builder'),(8112,1972,'_elementor_template_type','wp-page'),(8113,1972,'_elementor_version','2.8.2'),(8114,1972,'_elementor_data','[{\"id\":\"68c872\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"61\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"553856d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b6cccf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From startups to Fortune 500s, WayUp offers the best internships and jobs.\",\"sub_title\":\"Career\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7bfd02a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec2a151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f8a622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"ea0c095\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7bf4992\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Digital Designer\",\"btn_text\":\"Apply now fds\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"e535d05\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-envato.png\",\"id\":1990},\"title\":\"Graphic Artist\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"4ad9249\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-themeforest.png\",\"id\":1991},\"title\":\"Sales Reporter\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"0bfca0b\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-codecanyon.png\",\"id\":1989},\"title\":\"Digital Marketer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"cddfe0a\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Web Designer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"24295dc\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/icon-career.png\",\"id\":1988},\"title\":\"Web Developer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"be4c6df\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_career_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"380c36d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"610f6d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379456c7\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8115,1972,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:14:\"ct_career_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(8116,2269,'_edit_last','1'),(8117,2269,'_wp_page_template','default'),(8118,2269,'custom_header','0'),(8119,2269,'header_layout','2'),(8120,2269,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8121,2269,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8122,2269,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8123,2269,'custom_pagetitle','themeoption'),(8124,2269,'custom_title',''),(8125,2269,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8126,2269,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8127,2269,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8128,2269,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8129,2269,'show_sidebar_page',''),(8130,2269,'sidebar_page_pos','right'),(8131,2269,'custom_footer','0'),(8132,2269,'footer_layout_custom','2249'),(8133,2269,'slide_template',''),(8134,2269,'_elementor_edit_mode','builder'),(8135,2269,'_elementor_template_type','wp-page'),(8136,2269,'_elementor_version','2.8.3'),(8137,2269,'_elementor_data','[{\"id\":\"82a3368\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1064ab3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30dc6e9\",\"elType\":\"widget\",\"settings\":{\"x_ax\":\"2020;2019;2018;2017;2016;2015\",\"values\":[{\"title\":\"Business\",\"y_ax\":\"5000;7500;4000;14000;9000;24000\",\"_id\":\"ff5b5d7\",\"border_color\":\"#00ADEF\",\"bg_color\":\"rgba(0, 173, 239, 0.3)\"},{\"title\":\"Finance\",\"y_ax\":\"12500;11000;22000;17000;27000;26500\",\"_id\":\"84d1c6a\",\"border_color\":\"#5080FC\",\"bg_color\":\"rgba(100, 144, 237, 0.3)\"},{\"title\":\"Consulting\",\"y_ax\":\"16000;19000;28000;24000;32000;36500\",\"_id\":\"ca8fa6d\",\"border_color\":\"#001BE7\",\"bg_color\":\"rgba(0, 27, 231, 0.2)\"}]},\"elements\":[],\"widgetType\":\"ct_line_chart\"}],\"isInner\":false}],\"isInner\":false}]'),(8138,2269,'_elementor_controls_usage','a:3:{s:13:\"ct_line_chart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_line_chart\";a:1:{s:6:\"values\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(8169,569,'_edit_last','1'),(8170,569,'slide_template','default'),(8171,569,'portfolio_sub_title','Plan Estimations'),(8172,569,'_wp_page_template','default'),(8173,569,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8174,569,'_elementor_edit_mode','builder'),(8175,569,'_elementor_template_type','wp-post'),(8176,569,'_elementor_version','2.7.5'),(8177,569,'_elementor_data','[{\"id\":\"1ef46e13\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"767baefc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20c4bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4d2f320e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b770116\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"100163c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67225c89\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"411b8936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b8bdd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bf80737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fund Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"65162c9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed4b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f51c582\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46012a39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6cb5cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64fa3143\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8178,569,'_wp_old_slug','rupayan-taj'),(8179,569,'_thumbnail_id','1541'),(8180,569,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8181,571,'_edit_last','1'),(8182,571,'slide_template','default'),(8183,571,'portfolio_sub_title','Exterior Design'),(8184,571,'_wp_page_template','default'),(8185,571,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8186,571,'_elementor_edit_mode','builder'),(8187,571,'_elementor_template_type','wp-post'),(8188,571,'_elementor_version','2.7.5'),(8189,571,'_elementor_data','[{\"id\":\"277bf312\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc56f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"624674ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"340c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c9ecac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51426840\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67eae2ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"303d0652\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"141dc37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb2aea0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"141fe9f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"747aff36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e895bd\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10eb7f3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"efe11f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ac9c126\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8190,571,'_wp_old_slug','razia-tower'),(8191,571,'_thumbnail_id','1538'),(8192,571,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8193,1738,'_edit_last','1'),(8194,1738,'_wp_page_template','default'),(8195,1738,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8196,1738,'portfolio_sub_title',''),(8197,1738,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8198,1738,'slide_template','default'),(8199,1738,'_wp_old_date','2019-12-03'),(8200,1738,'_thumbnail_id','1543'),(8201,1738,'_elementor_edit_mode','builder'),(8202,1738,'_elementor_template_type','wp-post'),(8203,1738,'_elementor_version','2.7.5'),(8204,1738,'_elementor_data','[{\"id\":\"4cc8a858\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a9bf111\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dacb188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"29c0a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ccba79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"364c6a73\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"121febed\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd74cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33db605f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ad1e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consumer Products\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"588e191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356281be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4caa3bf3\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d2447a2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ae03e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34a7476f\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8205,1740,'_edit_last','1'),(8206,1740,'_wp_page_template','default'),(8207,1740,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8208,1740,'portfolio_sub_title',''),(8209,1740,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8210,1740,'slide_template','default'),(8211,1740,'_wp_old_date','2019-12-03'),(8212,1740,'_thumbnail_id','1542'),(8213,1740,'_elementor_edit_mode','builder'),(8214,1740,'_elementor_template_type','wp-post'),(8215,1740,'_elementor_version','2.7.5'),(8216,1740,'_elementor_data','[{\"id\":\"43507583\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cf40545\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4c8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6d7538c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d10b19e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32acc966\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a4ca7b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"700a2a24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e4e5ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68b48f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68c26d42\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccdfb2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31d7d807\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f447e11\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"432e9342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69919d4b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8217,1766,'_edit_last','1'),(8218,1766,'_thumbnail_id','1537'),(8219,1766,'_wp_page_template','default'),(8220,1766,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8221,1766,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8222,1766,'slide_template',''),(8223,1766,'_wp_old_date','2019-12-03'),(8224,1766,'_elementor_edit_mode','builder'),(8225,1766,'_elementor_template_type','wp-post'),(8226,1766,'_elementor_version','2.7.5'),(8227,1766,'_elementor_data','[{\"id\":\"5bba157\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bbc1efb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d608d10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"58fafd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d5571d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5988917e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fc73221\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3caff8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5f41740e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"288149d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"StartUp Business\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78cd2015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fb53d40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3c379\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25631488\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59578091\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a06c1f7\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8286,3497,'_edit_last','1'),(8287,3497,'_wp_page_template','default'),(8288,3497,'custom_header','1'),(8289,3497,'header_layout','2'),(8290,3497,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8291,3497,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8292,3497,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8293,3497,'page_h_phone',''),(8294,3497,'page_h_time',''),(8295,3497,'custom_pagetitle','show'),(8296,3497,'custom_title','Testimonials'),(8297,3497,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8298,3497,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8299,3497,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8300,3497,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8301,3497,'show_sidebar_page',''),(8302,3497,'sidebar_page_pos','right'),(8303,3497,'loading_page','themeoption'),(8304,3497,'loading_type','style1'),(8305,3497,'loading_color',''),(8306,3497,'custom_footer','1'),(8307,3497,'footer_layout_custom','3808'),(8308,3497,'page_back_totop','themeoption'),(8309,3497,'slide_template','default'),(8310,3497,'_elementor_edit_mode','builder'),(8311,3497,'_elementor_template_type','wp-page'),(8312,3497,'_elementor_version','2.8.5'),(8313,3497,'_elementor_data','[{\"id\":\"c89f3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2687c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3010a357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"37\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e1e7a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d328236\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734d13ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b96728d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e1f2d9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"195eecf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"cd84e60\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b63d25b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"525775b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"1b90e55\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b6453f9\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"8a6d9b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50718662\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"320475e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"79a188fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1ca7ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c91988f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"58f371a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"512dec0\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a02cad5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"102df0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc1ab47\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4780c367\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17cd84b8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8314,3497,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;s:11:\"title_color\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:11:\"btn_padding\";i:2;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:2;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8315,3500,'_edit_last','1'),(8316,3500,'_wp_page_template','default'),(8317,3500,'custom_header','1'),(8318,3500,'header_layout','2'),(8319,3500,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8320,3500,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8321,3500,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8322,3500,'page_h_phone',''),(8323,3500,'page_h_time',''),(8324,3500,'custom_pagetitle','show'),(8325,3500,'custom_title','Testimonials'),(8326,3500,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8327,3500,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8328,3500,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8329,3500,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8330,3500,'show_sidebar_page',''),(8331,3500,'sidebar_page_pos','right'),(8332,3500,'loading_page','themeoption'),(8333,3500,'loading_type','style1'),(8334,3500,'loading_color',''),(8335,3500,'custom_footer','1'),(8336,3500,'footer_layout_custom','3808'),(8337,3500,'page_back_totop','themeoption'),(8338,3500,'slide_template','default'),(8339,3500,'_elementor_edit_mode','builder'),(8340,3500,'_elementor_template_type','wp-page'),(8341,3500,'_elementor_version','2.8.5'),(8342,3500,'_elementor_data','[{\"id\":\"37b0d9e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e28c4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7dfaa5c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219b9a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ba6390\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"50757a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad2eb45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ba640c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"7b31aa02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16c849ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"760b3a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39e31d8c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8343,3500,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8344,3502,'_edit_last','1'),(8345,3502,'_wp_page_template','default'),(8346,3502,'custom_header','1'),(8347,3502,'header_layout','24'),(8348,3502,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8349,3502,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8350,3502,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8351,3502,'page_h_phone',''),(8352,3502,'page_h_time',''),(8353,3502,'custom_pagetitle','hide'),(8354,3502,'custom_title','Testimonials'),(8355,3502,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8356,3502,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(8357,3502,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8358,3502,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8359,3502,'show_sidebar_page',''),(8360,3502,'sidebar_page_pos','right'),(8361,3502,'loading_page','themeoption'),(8362,3502,'loading_type','style1'),(8363,3502,'loading_color',''),(8364,3502,'custom_footer','0'),(8365,3502,'footer_layout_custom',''),(8366,3502,'page_back_totop','themeoption'),(8368,3502,'_elementor_edit_mode','builder'),(8369,3502,'_elementor_template_type','wp-page'),(8370,3502,'_elementor_version','3.5.3'),(8371,3502,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8372,3502,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8373,3504,'_edit_last','1'),(8374,3504,'_wp_page_template','default'),(8375,3504,'custom_header','1'),(8376,3504,'header_layout','6'),(8377,3504,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8378,3504,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8379,3504,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8380,3504,'page_h_phone','(210) 123-451'),(8381,3504,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(8382,3504,'custom_pagetitle','show'),(8383,3504,'custom_title','Pricing'),(8384,3504,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(8385,3504,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(8386,3504,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#faf7f0\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(250,247,240,1)\";}'),(8387,3504,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8388,3504,'show_sidebar_page',''),(8389,3504,'sidebar_page_pos','right'),(8390,3504,'loading_page','themeoption'),(8391,3504,'loading_type','style1'),(8392,3504,'loading_color',''),(8393,3504,'custom_footer','1'),(8394,3504,'footer_layout_custom','3808'),(8395,3504,'page_back_totop','themeoption'),(8396,3504,'slide_template','default'),(8397,3504,'_elementor_edit_mode','builder'),(8398,3504,'_elementor_template_type','wp-page'),(8399,3504,'_elementor_version','2.8.5'),(8400,3504,'_elementor_data','[{\"id\":\"729d3801\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"722c279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"198f4d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"sub_title\":\"Pricing\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"700\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"style\":\"st-line-left3\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6ddd7a0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab9c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\\nbusiness\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3cf44a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2b5a8902\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d4608fc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8e4982\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"35533b12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e67feab\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8401,3504,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:5:\"style\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8402,3506,'_edit_last','1'),(8403,3506,'_wp_page_template','default'),(8404,3506,'_elementor_controls_usage','a:0:{}'),(8405,3506,'custom_header',''),(8406,3506,'header_layout','1'),(8407,3506,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8408,3506,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8409,3506,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8410,3506,'page_h_phone',''),(8411,3506,'page_h_time',''),(8412,3506,'custom_pagetitle','themeoption'),(8413,3506,'custom_title',''),(8414,3506,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8415,3506,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8416,3506,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8417,3506,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8418,3506,'show_sidebar_page',''),(8419,3506,'sidebar_page_pos','right'),(8420,3506,'loading_page','themeoption'),(8421,3506,'loading_type','style1'),(8422,3506,'loading_color',''),(8423,3506,'custom_footer',''),(8424,3506,'footer_layout_custom',''),(8425,3506,'page_back_totop','themeoption'),(8426,3506,'slide_template','default'),(8427,3508,'_edit_last','1'),(8428,3508,'_wp_page_template','default'),(8429,3508,'_elementor_controls_usage','a:0:{}'),(8430,3508,'custom_header',''),(8431,3508,'header_layout','1'),(8432,3508,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8433,3508,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8434,3508,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8435,3508,'page_h_phone',''),(8436,3508,'page_h_time',''),(8437,3508,'custom_pagetitle','themeoption'),(8438,3508,'custom_title',''),(8439,3508,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8440,3508,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8441,3508,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8442,3508,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8443,3508,'show_sidebar_page',''),(8444,3508,'sidebar_page_pos','right'),(8445,3508,'loading_page','themeoption'),(8446,3508,'loading_type','style1'),(8447,3508,'loading_color',''),(8448,3508,'custom_footer',''),(8449,3508,'footer_layout_custom',''),(8450,3508,'page_back_totop','themeoption'),(8451,3508,'slide_template','default'),(8510,3514,'_edit_last','1'),(8511,3514,'_wp_page_template','default'),(8512,3514,'custom_header','1'),(8513,3514,'header_layout','24'),(8514,3514,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8515,3514,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8516,3514,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(8517,3514,'page_h_phone',''),(8518,3514,'page_h_time',''),(8519,3514,'custom_pagetitle','hide'),(8520,3514,'custom_title','Contact'),(8521,3514,'ptitle_bg','a:2:{s:16:\"background-image\";s:80:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8522,3514,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";}'),(8523,3514,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8524,3514,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(8525,3514,'show_sidebar_page',''),(8526,3514,'sidebar_page_pos','right'),(8527,3514,'loading_page','themeoption'),(8528,3514,'loading_type','style1'),(8529,3514,'loading_color',''),(8530,3514,'custom_footer','0'),(8531,3514,'footer_layout_custom',''),(8532,3514,'page_back_totop','themeoption'),(8534,3514,'_elementor_edit_mode','builder'),(8535,3514,'_elementor_template_type','wp-page'),(8536,3514,'_elementor_version','3.5.3'),(8537,3514,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\",\"id\":8884,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8538,3514,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8539,3516,'_edit_last','1'),(8540,3516,'_wp_page_template','default'),(8541,3516,'custom_header','1'),(8542,3516,'header_layout','6'),(8543,3516,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8544,3516,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8545,3516,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8546,3516,'page_h_phone','(210) 123-451'),(8547,3516,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(8548,3516,'custom_pagetitle','show'),(8549,3516,'custom_title','Team'),(8550,3516,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8551,3516,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(8552,3516,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8553,3516,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8554,3516,'show_sidebar_page',''),(8555,3516,'sidebar_page_pos','right'),(8556,3516,'loading_page','themeoption'),(8557,3516,'loading_type','style1'),(8558,3516,'loading_color',''),(8559,3516,'custom_footer','1'),(8560,3516,'footer_layout_custom','3808'),(8561,3516,'page_back_totop','themeoption'),(8562,3516,'slide_template','default'),(8563,3516,'_elementor_edit_mode','builder'),(8564,3516,'_elementor_template_type','wp-page'),(8565,3516,'_elementor_version','2.8.5'),(8566,3516,'_elementor_data','[{\"id\":\"de32beb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"02fe18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50aea1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team members\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da4fc80\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"4e903ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18766663\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f3225e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37234e60\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8567,3516,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8568,3518,'_edit_last','1'),(8569,3518,'_wp_page_template','default'),(8570,3518,'custom_header','1'),(8571,3518,'header_layout','6'),(8572,3518,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8573,3518,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8574,3518,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8575,3518,'page_h_phone','(210) 123-451'),(8576,3518,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(8577,3518,'custom_pagetitle','show'),(8578,3518,'custom_title','Team'),(8579,3518,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(8580,3518,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"76px\";s:14:\"padding-bottom\";s:4:\"76px\";s:5:\"units\";s:2:\"px\";}'),(8581,3518,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8582,3518,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8583,3518,'show_sidebar_page',''),(8584,3518,'sidebar_page_pos','right'),(8585,3518,'loading_page','themeoption'),(8586,3518,'loading_type','style1'),(8587,3518,'loading_color',''),(8588,3518,'custom_footer','1'),(8589,3518,'footer_layout_custom','3808'),(8590,3518,'page_back_totop','themeoption'),(8591,3518,'slide_template','default'),(8592,3518,'_elementor_edit_mode','builder'),(8593,3518,'_elementor_template_type','wp-page'),(8594,3518,'_elementor_version','2.8.5'),(8595,3518,'_elementor_data','[{\"id\":\"447525ee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"86\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d46c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"239427c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We always work with a great team.\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"st-line-left3\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36cf3dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"58\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"77423db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#A8908F\"},\"elements\":[{\"id\":\"5b017e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5101bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"553ef78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11b392d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37ab8395\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6edd789c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28643b20\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"64260a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e4196fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"784d7355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6708c127\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8596,3518,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"ct_animate\";i:1;s:27:\"title_typography_typography\";i:1;s:5:\"style\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:13:\"content_list3\";i:2;}s:12:\"grid_section\";a:6:{s:14:\"thumbnail_size\";i:2;s:26:\"thumbnail_custom_dimension\";i:2;s:6:\"col_md\";i:2;s:6:\"col_lg\";i:2;s:6:\"col_xl\";i:2;s:10:\"ct_animate\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:17:\"btn_border_radius\";i:1;s:11:\"btn_padding\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8597,3520,'_edit_last','1'),(8598,3520,'_wp_page_template','default'),(8599,3520,'custom_header',''),(8600,3520,'header_layout','1'),(8601,3520,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8602,3520,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8603,3520,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8604,3520,'page_h_phone',''),(8605,3520,'page_h_time',''),(8606,3520,'custom_pagetitle','show'),(8607,3520,'custom_title','Team'),(8608,3520,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8609,3520,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8610,3520,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8611,3520,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8612,3520,'show_sidebar_page',''),(8613,3520,'sidebar_page_pos','right'),(8614,3520,'loading_page','themeoption'),(8615,3520,'loading_type','style1'),(8616,3520,'loading_color',''),(8617,3520,'custom_footer',''),(8618,3520,'footer_layout_custom',''),(8619,3520,'page_back_totop','themeoption'),(8620,3520,'slide_template','default'),(8621,3520,'_elementor_edit_mode','builder'),(8622,3520,'_elementor_template_type','wp-page'),(8623,3520,'_elementor_version','2.8.5'),(8624,3520,'_elementor_data','[{\"id\":\"8c17192\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E4EAEE\",\"padding\":{\"unit\":\"px\",\"top\":\"060\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a445675\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94d2f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cb3f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"5e7c953\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"cfdc757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"828f9d3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8a0a04a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"sfdsdaf\",\"position\":\"\",\"desc\":\"\",\"social\":\"[]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90df330\"}],\"content_list4\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"be8b76d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7516d24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"505cae5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"a352cd2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b8baca1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9c4e5eb\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"14f1627\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b719730\"}],\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"267\",\"height\":\"352\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"1d25b5be\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8625,3520,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:13:\"content_list3\";i:1;s:13:\"content_list4\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(8626,4348,'_edit_last','1'),(8627,4348,'_wp_page_template','default'),(8628,4348,'custom_header','1'),(8629,4348,'header_layout','10'),(8630,4348,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8631,4348,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8632,4348,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8633,4348,'page_h_phone',''),(8634,4348,'page_h_time',''),(8635,4348,'h_custom_menu','57'),(8636,4348,'h_custom_menu_left',''),(8637,4348,'h_custom_menu_right',''),(8638,4348,'custom_pagetitle','hide'),(8639,4348,'custom_title',''),(8640,4348,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(8641,4348,'p_page_title_color',''),(8642,4348,'ptitle_overlay','themeoption'),(8643,4348,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8644,4348,'ptitle_breadcrumb_page','themeoption'),(8645,4348,'ptitle_breadcrumb_color',''),(8646,4348,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(8647,4348,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8648,4348,'show_sidebar_page',''),(8649,4348,'sidebar_page_pos','right'),(8650,4348,'loading_page','themeoption'),(8651,4348,'loading_type','style1'),(8652,4348,'custom_footer',''),(8653,4348,'footer_layout_custom',''),(8654,4348,'page_back_totop','themeoption'),(8655,4348,'slide_template','default'),(8656,4348,'rs_page_bg_color','#ffffff'),(8657,4348,'_elementor_edit_mode','builder'),(8658,4348,'_elementor_template_type','wp-page'),(8659,4348,'_elementor_version','2.9.14'),(8660,4348,'_elementor_data','[{\"id\":\"38bbec07\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"css_classes\":\"h9-section-01\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-header.png\",\"id\":4191},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"3dab1e51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ec7062a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h8-bg-video.jpg\",\"id\":4138},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style6\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":798,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"17b3d6c8\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f23730c\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f47f288\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5512377\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d7ce36\"}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"6378dd3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"33\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f6db2c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/logo-shape.png\",\"id\":4145},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66e479c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2f14eb45\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"192c4730\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-280\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"51\",\"right\":\"0\",\"bottom\":\"145\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"h9-section-02\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb4df5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"6bf7d3e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"81\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ee92468\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Without consulting, plans stay as plans. so need consulting for marketing\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6168cf64\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our team\",\"btn_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-white2\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"564c870f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"21\",\"css_classes\":\"h9-section-03\"},\"elements\":[{\"id\":\"1447dc06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#1A2AA9\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001332267629550187848508358001708984375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7cd5363d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6130dd88\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"12577759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"73b73894\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"614c8563\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields where we provide our services\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Featured Services\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"22afd369\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.85199999999999675992512493394315242767333984375,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2bd059c9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<b>Service Marketing:<\\/b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"72cd0a3f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"source\":[\"consultant|service-category\"],\"num_words\":12,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66c707c3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"5ac9d0b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"28f00c79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-about.png\",\"id\":4201},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-17\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6da80343\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.96000000000000085265128291212022304534912109375,\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d4654d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are Consultio, stablished Since\\n<small>1999.<\\/small>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a5f8e56\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"23f840df\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon1.png\",\"id\":4208},\"title_text\":\"Our Mission\",\"description_text\":\"Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1632153c\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon2.png\",\"id\":4209},\"title_text\":\"Our Value\",\"description_text\":\"A client once told us that where others focus on one star one issue we see the whole sky. \",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2db1eb04\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#EEF5FB\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-section-01.png\",\"id\":4223},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"085\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"7a562d66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42f18bc7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"60ff4dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"9410c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"All services which we have provided\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4fe5bdc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"3c8abfc2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Definition of <b>Provide Services. Provide Services<\\/b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance<\\/b> to a person, business or other entity.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"521971f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"source\":[\"solutions|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"95\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"4ef8d216\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"fas fa-user-cog\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75603b58\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-case-studies\"},\"elements\":[{\"id\":\"7e9413d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5770f9cd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e3122aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"63b4fc61\",\"elType\":\"widget\",\"settings\":{\"title\":\"A case study focuses on a single event.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"55285d0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"493ab1c5\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A <b>case study<\\/b> is an in-depth study of one person, group, or event. Much of Freud\'s work and theories were developed through the use of individual <b>case studies.<\\/b>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6020d7b1\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"layout\":\"3\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b6a89\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"7d7e0f30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c82c67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5b9815f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"6ae163d9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"405be555\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"764c5dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27cbab22\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"sub_title\":\"\",\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"sub_title\":\"\",\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"sub_title\":\"\",\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"7fd4096b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bd3b2f6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"699bb85f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"7d98e87a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a41554f\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"150e7321\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cd7226b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fc783f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2108392c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"49bac9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some easy steps for processing\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Steps\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5db01adf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"65de444c\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2be1bf2d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-speed\",\"library\":\"flaticonv2\"},\"title\":\"Contact us first\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Contact us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dda8279\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"title\":\"Consult with us\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Appoinment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e8384d\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Place Order\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Order now\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edb64ef\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-banknote\",\"library\":\"flaticonv2\"},\"title\":\"Make Payment\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"02a4fa6\"}]},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50bc4f80\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"36c350a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"4444f39f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"235b606b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14bd4eb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to do business with us?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Contact\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"207c633\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"32ac54d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-address-book\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"btn_bg_color\":\"#05C3EF\",\"btn_bg_color_hover\":\"#135ABF\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"287f281b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cd26ce9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b2fb40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"a57bdc1\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"91aeee6\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Our Mission\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"8303bab\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Payroll Service\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"bdab1d1\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"4ee1c57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96000000000000085265128291212022304534912109375,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"624bcca3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-map.png\",\"id\":4301},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"319ea6a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"74a16bb7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e196031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.082999999999998408384271897375583648681640625,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6da2d14\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have achieved great Funfacts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Fun facts\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"23117f15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.87700000000000244426701101474463939666748046875,\"_inline_size_tablet\":40},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7721a218\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"185c8084\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1bb30fe0\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":24,\"suffix\":\"k\",\"title\":\"Happy <cite>Clients<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"2007860b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"b7da55d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":36,\"suffix\":\"+\",\"title\":\"Expert <cite>Team<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"64f893\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5cc93a6a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":15,\"suffix\":\"+\",\"title\":\"Awards <cite>Winner<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"69514b75\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7708a163\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":110,\"suffix\":\"+\",\"title\":\"Positive <cite>Reviews<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61100bf3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"386d903e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1b004ec3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36a1e3b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"728d6bf9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Pricing\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63046df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e74c53f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f191b2a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"tab_style\":\"style2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"564c4b90\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8661,4348,'_elementor_controls_usage','a:21:{s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:6:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:15:\"btn_video_style\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:19:\"image_height_mobile\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:5:\"icons\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:38;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:37;s:19:\"_inline_size_tablet\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:5;s:6:\"margin\";i:7;s:11:\"css_classes\";i:3;s:13:\"margin_tablet\";i:4;s:14:\"padding_tablet\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:12:\"_css_classes\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:10;s:27:\"title_typography_typography\";i:10;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_line_height\";i:10;s:33:\"title_typography_font_size_tablet\";i:10;s:35:\"title_typography_line_height_tablet\";i:10;s:33:\"title_typography_font_size_mobile\";i:10;s:35:\"title_typography_line_height_mobile\";i:10;s:18:\"title_space_bottom\";i:3;s:11:\"title_color\";i:2;s:25:\"title_space_bottom_mobile\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:9;s:15:\"sub_title_style\";i:9;s:15:\"sub_title_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:3:{s:5:\"space\";i:5;s:12:\"space_mobile\";i:1;s:12:\"space_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:15:\"stretch_section\";i:9;s:6:\"layout\";i:3;s:3:\"gap\";i:21;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:11:\"css_classes\";i:3;s:11:\"_element_id\";i:6;s:6:\"margin\";i:2;s:7:\"padding\";i:14;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:6;s:19:\"background_position\";i:6;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:6;s:16:\"background_color\";i:2;s:21:\"background_attachment\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"text\";i:3;s:8:\"btn_icon\";i:3;s:10:\"icon_align\";i:3;s:5:\"style\";i:3;s:4:\"link\";i:3;s:10:\"ct_animate\";i:3;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:1;s:18:\"btn_bg_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:7;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:15:\"_padding_tablet\";i:2;s:7:\"_margin\";i:7;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_content\";a:4:{s:9:\"icon_type\";i:2;s:10:\"icon_image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}s:13:\"section_style\";a:2:{s:5:\"style\";i:2;s:10:\"ct_animate\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:1:{s:6:\"col_md\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:10:\"image_type\";i:1;s:12:\"image_height\";i:1;s:19:\"image_height_tablet\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:13:\"style_section\";a:2:{s:14:\"position_color\";i:1;s:17:\"description_color\";i:1;}s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:8:\"infinite\";i:1;s:6:\"arrows\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_carousel_arrow\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:25:\"content_alignment_section\";a:3:{s:11:\"arrow_align\";i:1;s:5:\"style\";i:1;s:18:\"arrow_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:10:\"ct_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:6:\"layout\";i:1;s:12:\"content_list\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:5:{s:4:\"tabs\";i:2;s:8:\"tab_type\";i:1;s:16:\"title_color_type\";i:1;s:18:\"content_color_type\";i:1;s:9:\"tab_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:3;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8701,8379,'_edit_last','1'),(8702,8379,'_wp_page_template','default'),(8703,8379,'_elementor_controls_usage','a:0:{}'),(8704,8379,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(8705,8379,'show_sidebar_post','0'),(8706,8379,'sidebar_post_pos','right'),(8708,8379,'post_views_count','37'),(8709,8379,'_thumbnail_id','8638'),(8721,573,'_edit_last','1'),(8722,573,'slide_template','default'),(8723,573,'portfolio_sub_title','Plan Certification'),(8724,573,'_wp_page_template','default'),(8725,573,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8726,573,'_elementor_edit_mode','builder'),(8727,573,'_elementor_template_type','wp-post'),(8728,573,'_elementor_version','2.7.5'),(8729,573,'_elementor_data','[{\"id\":\"57ce9589\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b35ef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6681b63f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"391d5678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"391b9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b45b4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31b2a3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72434400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"335ce718\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"645505c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market Expansion\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68730ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9e6a449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678da7c9\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"476936cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"41c2b24b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8730,573,'_wp_old_slug','fr-tower'),(8731,573,'_thumbnail_id','1536'),(8732,573,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8733,575,'_edit_last','1'),(8734,575,'slide_template','default'),(8735,575,'portfolio_sub_title','Property Sketching'),(8736,575,'_wp_page_template','default'),(8737,575,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8738,575,'_elementor_edit_mode','builder'),(8739,575,'_elementor_template_type','wp-post'),(8740,575,'_elementor_version','2.7.5'),(8741,575,'_elementor_data','[{\"id\":\"1f47c785\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"795b4afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d7a8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"273c1c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"41bca8c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1485b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e67225\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c35b751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-06.jpg\",\"id\":1535},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ac734f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1819ba63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revenue Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36279b37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220d351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d838b\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4093c7be\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43083958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c0c4bc5\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8742,575,'_wp_old_slug','rio-villa'),(8743,575,'_thumbnail_id','1535'),(8744,575,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8745,577,'_edit_last','1'),(8746,577,'slide_template','default'),(8747,577,'portfolio_sub_title','Material Supply'),(8748,577,'_wp_page_template','default'),(8749,577,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8750,577,'_elementor_edit_mode','builder'),(8751,577,'_elementor_template_type','wp-post'),(8752,577,'_elementor_data','[{\"id\":\"1dfbc5d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a482228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab965a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7f52b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b8ece51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70d2235d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbed3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"925f00f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43c59fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5573d38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Court Imperial\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"187f95bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a74858\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fb27f40\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afe2c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11319ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"92f0806\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8753,577,'_elementor_version','2.7.5'),(8754,577,'_thumbnail_id','1534'),(8755,577,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8756,579,'_edit_last','1'),(8757,579,'slide_template','default'),(8758,579,'post_views_count','2'),(8759,579,'portfolio_sub_title','House Remodel'),(8760,579,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8761,579,'_elementor_edit_mode','builder'),(8762,579,'_elementor_template_type','wp-post'),(8763,579,'_elementor_version','2.7.5'),(8764,579,'_wp_page_template','default'),(8765,579,'_elementor_data','[{\"id\":\"5082f78d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b5819a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44d39aa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"19f72c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5514f494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"105945eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3b933b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66ab5385\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-04.jpg\",\"id\":1533},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2519c386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7890d411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a9d30b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb90524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a4abaa5\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2020\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.consultio.com\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64729566\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36235ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"302e5231\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8766,579,'_wp_old_slug','city-centre'),(8767,579,'_thumbnail_id','1533'),(8768,579,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8769,581,'_edit_last','1'),(8770,581,'slide_template','default'),(8771,581,'post_views_count','3'),(8772,581,'portfolio_sub_title','Plan Estimations'),(8773,581,'_wp_page_template','default'),(8774,581,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8775,581,'_elementor_edit_mode','builder'),(8776,581,'_elementor_template_type','wp-post'),(8777,581,'_elementor_version','2.7.5'),(8778,581,'_elementor_data','[{\"id\":\"fd2936\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d117fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6728f356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"37246f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"20294c52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ad3f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f2abeab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b712b50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-03.jpg\",\"id\":1532},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3abbf614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d31227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chan Agency\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30a0ede6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"334c2cd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"287cdf86\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f9eafa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74e7fa37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f015042\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8779,581,'_wp_old_slug','borak-mehnur'),(8780,581,'_thumbnail_id','1532');
INSERT INTO `wp_postmeta` VALUES (8781,581,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8782,8381,'_edit_last','1'),(8783,8381,'slide_template','default'),(8784,8381,'post_views_count','2'),(8785,8381,'portfolio_sub_title','Interior Design'),(8786,8381,'_wp_page_template','default'),(8787,8381,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8788,8381,'_elementor_edit_mode','builder'),(8789,8381,'_elementor_template_type','wp-post'),(8790,8381,'_elementor_version','2.7.5'),(8791,8381,'_elementor_data','[{\"id\":\"15e9dfce\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"258e2d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e40afd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7388310\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"70ed0350\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48fe0bbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc9639d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"714b5cd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b03d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"260a630d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49a4ce28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35687c3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bb9e3ca\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a34e962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a68a8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f079b53\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8792,8381,'_wp_old_slug','rf-tower'),(8793,8381,'_thumbnail_id','1531'),(8794,8381,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8795,1742,'_edit_last','1'),(8796,1742,'_wp_page_template','default'),(8797,1742,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(8798,1742,'portfolio_sub_title',''),(8799,1742,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8800,1742,'slide_template','default'),(8801,1742,'_thumbnail_id','1530'),(8802,1742,'_elementor_edit_mode','builder'),(8803,1742,'_elementor_template_type','wp-post'),(8804,1742,'_elementor_version','2.7.5'),(8805,1742,'_elementor_data','[{\"id\":\"33631ddb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64d9501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1db4ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e9611ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2236e97b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"630f7823\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5851b0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21fe0299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"666172d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49eb497\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"29b73151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e998dc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f16b749\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a4e8bca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dc2cbfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fdb4fd3\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(8806,1742,'ptitle_bg','a:2:{s:16:\"background-image\";s:87:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h6-team4.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"3401\";s:6:\"height\";s:3:\"450\";s:5:\"width\";s:3:\"450\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h6-team4-150x150.jpg\";}}'),(8807,1742,'custom_pagetitle','themeoption'),(8808,8382,'_edit_last','1'),(8809,8382,'_wp_page_template','default'),(8810,8382,'service_except','Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.'),(8811,8382,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8812,8382,'slide_template',''),(8813,8382,'service_icon','flaticon-document'),(8814,8382,'_elementor_edit_mode','builder'),(8815,8382,'_elementor_template_type','wp-post'),(8816,8382,'_elementor_version','2.7.5'),(8817,8382,'_elementor_data','[{\"id\":\"24b96b2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0a26a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"27e9d0b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7fdadd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3401c8e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b2f0a2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5ea1b3fd\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"72341ec9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d71e5a4\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d9823f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"525fdf55\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70fccaab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5038b12b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"692d161\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"9a76b64\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2841df09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"569f6d22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ebe579f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ebe53e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42d3dd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"26346a93\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8818,8382,'_thumbnail_id','1538'),(8819,8382,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8820,8382,'_wp_old_slug','metal-roofing'),(8821,8382,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8822,8383,'_edit_last','1'),(8823,8383,'_wp_page_template','default'),(8824,8383,'service_except','A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.'),(8825,8383,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8826,8383,'slide_template',''),(8827,8383,'service_icon','flaticon-eye'),(8828,8383,'_elementor_edit_mode','builder'),(8829,8383,'_elementor_template_type','wp-post'),(8830,8383,'_elementor_version','2.7.5'),(8831,8383,'_elementor_data','[{\"id\":\"1b1cd0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c48a456\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a89488c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"b5349e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f53d85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233b1a0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"c8deb5e\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2fd822c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"d5c9c33\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6fed9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6dae33\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70afa14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"66112fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d15cfd\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"ab598c4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ca16fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1548059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1021f1b\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e0b2e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f7d0b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ad765c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8832,8383,'_thumbnail_id','1541'),(8833,8383,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8834,8383,'_wp_old_slug','interior-design'),(8835,8383,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8836,8384,'_edit_last','1'),(8837,8384,'_wp_page_template','default'),(8838,8384,'service_icon','flaticon-chart-1'),(8839,8384,'service_except','Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.'),(8840,8384,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8841,8384,'slide_template',''),(8842,8384,'_elementor_edit_mode','builder'),(8843,8384,'_elementor_template_type','wp-post'),(8844,8384,'_elementor_version','2.7.5'),(8845,8384,'_elementor_data','[{\"id\":\"3a4a7b26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"915447d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"178ed7df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d350375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51b661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"15862e4f\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57b83fdc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4354465f\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2483f9f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd80012\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"eca4320\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a864c63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eb05a19\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6f3b3b88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"258fd3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3ad38e33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3057e303\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e2459bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e81477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"46098650\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8846,8384,'_thumbnail_id','1530'),(8847,8384,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8848,8384,'_wp_old_slug','general-contracting'),(8849,8384,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8850,8385,'_edit_last','1'),(8851,8385,'_wp_page_template','default'),(8852,8385,'service_icon','flaticon-presentation'),(8853,8385,'service_except','What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.'),(8854,8385,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8855,8385,'slide_template',''),(8856,8385,'_elementor_edit_mode','builder'),(8857,8385,'_elementor_template_type','wp-post'),(8858,8385,'_elementor_version','2.7.5'),(8859,8385,'_elementor_data','[{\"id\":\"6a53a81c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36346e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bc7d745\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"46d7f391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48fe5cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b982cce\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4e071452\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2504dd8d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"48fcf97\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"4e1963b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7409dc3d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5f1a36b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"156390c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59243e36\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5ecb93f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6299f06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b9da903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f548340\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eca01ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"304ec3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"976bc52\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8860,8385,'_thumbnail_id','1534'),(8861,8385,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8862,8385,'_wp_old_slug','house-renovation'),(8863,8385,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8864,8385,'icon_type','icon'),(8865,8385,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8866,8385,'rs_page_bg_color',''),(8867,8385,'_wp_old_slug','strategy'),(8868,8386,'_edit_last','1'),(8869,8386,'_wp_page_template','default'),(8870,8386,'service_icon','flaticon-puzzle'),(8871,8386,'service_except','The development of your next business plan will be executed by a brilliant team who will indicate your grand success.'),(8872,8386,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8873,8386,'slide_template',''),(8874,8386,'_elementor_edit_mode','builder'),(8875,8386,'_elementor_template_type','wp-post'),(8876,8386,'_elementor_version','2.7.5'),(8877,8386,'_elementor_data','[{\"id\":\"1e878f39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a9c35f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b4f9955\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3abf5173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a431e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16e925ac\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"f8300\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1a3bf5d0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"28c9244d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"1376fcea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17c783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"576eff3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"607fd0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d590152\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"fcae319\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5d59bf2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"230322a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74358e14\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"367d11a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a37ca53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1d9841\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8878,8386,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8879,8386,'_wp_old_slug','laminate-flooring'),(8880,8386,'_thumbnail_id','4189'),(8881,8386,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8882,8386,'icon_type','icon'),(8883,8386,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8884,8386,'rs_page_bg_color',''),(8885,8386,'_wp_old_slug','program-management'),(8886,8387,'_edit_last','1'),(8887,8387,'_wp_page_template','default'),(8888,8387,'service_icon','flaticon-chart'),(8889,8387,'service_except','We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.'),(8890,8387,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(8891,8387,'slide_template',''),(8892,8387,'_elementor_edit_mode','builder'),(8893,8387,'_elementor_template_type','wp-post'),(8894,8387,'_elementor_version','2.7.5'),(8895,8387,'_elementor_data','[{\"id\":\"4881fb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"60f5cf44\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5236cc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5bf474db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21ca04a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118ec289\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3e340a56\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"9a22fc5\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"5a3ebb17\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"68320a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415a7443\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5e6d0038\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"64eeb67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42ea80fc\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"52d8de1c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"233d4206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3651e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71cdb235\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a78cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a925c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"526a9100\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8896,8387,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8897,8387,'_wp_old_slug','surface-demolition'),(8898,8387,'_thumbnail_id','1530'),(8899,8387,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8900,8387,'icon_type','icon'),(8901,8387,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8902,8387,'rs_page_bg_color',''),(8903,8387,'_wp_old_slug','business-planning'),(8904,1831,'_edit_last','1'),(8905,1831,'_wp_page_template','default'),(8906,1831,'service_icon','flaticon-report'),(8907,1831,'service_except','Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.'),(8908,1831,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8909,1831,'slide_template','default'),(8910,1831,'_elementor_edit_mode','builder'),(8911,1831,'_elementor_template_type','wp-post'),(8912,1831,'_elementor_version','2.7.5'),(8913,1831,'_elementor_data','[{\"id\":\"d316d7b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc70054\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5e047f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"41598b5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bcef6fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70140f7a\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3fa4e3d1\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6ceebeb3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"3e099470\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"73a785ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"735316af\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3027a943\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"505aab3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"50b53487\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2f947bd0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30787db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2478782d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f33a62a\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e148962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"566e7be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2723e715\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8914,1831,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8915,1833,'_edit_last','1'),(8916,1833,'_wp_page_template','default'),(8917,1833,'service_icon','flaticon-leadership'),(8918,1833,'service_except','When there is a key element of your organisation that is limiting your people’s to engagement performance.'),(8919,1833,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8920,1833,'slide_template','default'),(8921,1833,'_elementor_edit_mode','builder'),(8922,1833,'_elementor_template_type','wp-post'),(8923,1833,'_elementor_version','2.7.5'),(8924,1833,'_elementor_data','[{\"id\":\"26e9b8f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"58c255f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"20a45286\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3b8ff191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"683cd04b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"110eb12\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"6cdea283\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"447c06a8\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4b75bdd9\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"18c136a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47d162f2\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"6a046cca\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3916af44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eea81a1\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6fbec48b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a0ad4c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"217420ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ad98736\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ea96f58\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64e12d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4abbc068\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8925,1833,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8926,1835,'_edit_last','1'),(8927,1835,'_wp_page_template','default'),(8928,1835,'service_icon','flaticon-marketing-strategy'),(8929,1835,'service_except','Photography is the core of everything we do, photography equipment, camera, photography.'),(8930,1835,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8931,1835,'slide_template','default'),(8932,1835,'_elementor_edit_mode','builder'),(8933,1835,'_elementor_template_type','wp-post'),(8934,1835,'_elementor_version','2.7.5'),(8935,1835,'_elementor_data','[{\"id\":\"6b2e5eff\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7be6cff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"45a4d6ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4b613278\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"283b01e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14218f45\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"14319844\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2cee621d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"2e421d13\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d85681f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ac02940\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"53294094\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61534706\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"18f4cd79\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"10dcd941\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b2f10e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"11965546\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3737375e\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33902dbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37bb83ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"43ec34f0\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8936,1835,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8937,1837,'_edit_last','1'),(8938,1837,'_wp_page_template','default'),(8939,1837,'service_icon','flaticon-target-1'),(8940,1837,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(8941,1837,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(8942,1837,'slide_template','default'),(8943,1837,'_elementor_edit_mode','builder'),(8944,1837,'_elementor_template_type','wp-post'),(8945,1837,'_elementor_version','2.7.5'),(8946,1837,'_elementor_data','[{\"id\":\"31587bbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"113158c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"118cc93e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"2b67dc18\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e7a4a82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a8a9c25\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3867b1a6\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"47de4770\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"6586e0f7\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"757278d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32ae0866\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"42e9a08c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"18f9abfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d07a4c3\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1ddec7da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3044c697\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42355930\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"63970bfd\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b9fadba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7b93607c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4a26a508\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8947,1837,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8948,2758,'_edit_last','1'),(8949,2758,'_wp_page_template','default'),(8950,2758,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8951,2758,'service_icon',''),(8952,2758,'service_except','Front-end web developers are responsible for how a website looks. They create the site\'s layout and integrate graphics, applications.'),(8953,2758,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8954,2758,'slide_template',''),(8955,2758,'icon_type','image'),(8956,2758,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon3.png\";s:2:\"id\";s:4:\"4233\";s:6:\"height\";s:3:\"150\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon3.png\";s:5:\"title\";s:16:\"h9-service-icon3\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8957,2758,'_elementor_edit_mode','builder'),(8958,2758,'_elementor_template_type','wp-post'),(8959,2758,'_elementor_version','2.8.2'),(8960,2758,'_elementor_data','[{\"id\":\"fda4d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7171411a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"48094d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"212c50e0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7fca8fd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7684b940\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"653644b4\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"60b93e7b\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"620b5b6\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6f7dc616\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53341e1\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"628eb846\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3e7b26f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3b87a2fb\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4c809e51\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c42fa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2dc16628\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18d036f1\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cc187c3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"46a46bb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"486bea6f\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8961,2758,'rs_page_bg_color',''),(8962,2758,'_wp_old_slug','business-strategy'),(8963,2763,'_edit_last','1'),(8964,2763,'_wp_page_template','default'),(8965,2763,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8966,2763,'icon_type','image'),(8967,2763,'service_icon',''),(8968,2763,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon2.png\";s:2:\"id\";s:4:\"4232\";s:6:\"height\";s:3:\"150\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon2.png\";s:5:\"title\";s:16:\"h9-service-icon2\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8969,2763,'service_except','Looking for higher rankings and traffic through Search Engine Optimization? The Beginner\'s Guide to SEO has been read over 10 million times.'),(8970,2763,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8971,2763,'slide_template',''),(8972,2763,'_elementor_edit_mode','builder'),(8973,2763,'_elementor_template_type','wp-post'),(8974,2763,'_elementor_version','2.8.2'),(8975,2763,'_elementor_data','[{\"id\":\"279210fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38371860\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"48c03f6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7e78c493\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7c487794\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e0c09f5\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"7bfe72ca\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2a27c964\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"50a5cd08\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"48507be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"452d1654\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"52bd7027\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ee1221b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e255830\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1a16d9c8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"19d25c41\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6903081\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7bbd24fc\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3909a626\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"792b03cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"35685f5e\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8976,2763,'rs_page_bg_color',''),(8977,2763,'_wp_old_slug','brand-package'),(8978,2780,'_edit_last','1'),(8979,2780,'_wp_page_template','default'),(8980,2780,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8981,2780,'icon_type','image'),(8982,2780,'service_icon',''),(8983,2780,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon6.png\";s:2:\"id\";s:4:\"4236\";s:6:\"height\";s:3:\"150\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon6.png\";s:5:\"title\";s:16:\"h9-service-icon6\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(8984,2780,'service_except','Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined.'),(8985,2780,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(8986,2780,'slide_template',''),(8987,2780,'_wp_old_date','2019-12-17'),(8988,2780,'_elementor_edit_mode','builder'),(8989,2780,'_elementor_template_type','wp-post'),(8990,2780,'_elementor_version','2.8.2'),(8991,2780,'_elementor_data','[{\"id\":\"48577438\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"414b5bad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"328d8af1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6d7e0d32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1967a92d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"130dd196\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"51aec133\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"43251c08\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"218c5334\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2e43c0b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d479f52\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3f588eb0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b066956\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a84ef34\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2cf5cb63\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3240037d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"780675a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ae2cadc\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fdf6d90\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29a177d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7eef1f37\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(8992,2780,'rs_page_bg_color',''),(8993,2780,'_wp_old_slug','business-consulting'),(8994,2785,'_edit_last','1'),(8995,2785,'_wp_page_template','default'),(8996,2785,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(8997,2785,'icon_type','image'),(8998,2785,'service_icon',''),(8999,2785,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon5.png\";s:2:\"id\";s:4:\"4235\";s:6:\"height\";s:3:\"150\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon5.png\";s:5:\"title\";s:16:\"h9-service-icon5\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(9000,2785,'service_except','Build powerful, process-based applications to solve everyday business problems. Join 4 million+ users.'),(9001,2785,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(9002,2785,'slide_template',''),(9003,2785,'_wp_old_date','2019-12-17'),(9004,2785,'_elementor_edit_mode','builder'),(9005,2785,'_elementor_template_type','wp-post'),(9006,2785,'_elementor_version','2.8.2'),(9007,2785,'_elementor_data','[{\"id\":\"cfefcd1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75d80bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"78e06e2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5068de68\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd1bc31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c0e58ec\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"51042e9b\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2e2f8b99\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"76e7056c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"5e0bb9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"24c8bf5c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"564903ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"174678d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4fe55c1e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a2a9ed8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"59332e4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3b0933d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60b77cb7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bc75f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7d99c984\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7cebd039\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9008,2785,'rs_page_bg_color',''),(9009,2785,'_wp_old_slug','government-policy'),(9010,2787,'_edit_last','1'),(9011,2787,'_wp_page_template','default'),(9012,2787,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(9013,2787,'icon_type','image'),(9014,2787,'service_icon',''),(9015,2787,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon4.png\";s:2:\"id\";s:4:\"4234\";s:6:\"height\";s:3:\"150\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon4.png\";s:5:\"title\";s:16:\"h9-service-icon4\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(9016,2787,'service_except','At a minimum, marketing the PPP requires advertising the launch is an online advertising method that plays an audio \nadvertisement on websites.'),(9017,2787,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(9018,2787,'slide_template',''),(9019,2787,'_wp_old_date','2019-12-17'),(9020,2787,'_elementor_edit_mode','builder'),(9021,2787,'_elementor_template_type','wp-post'),(9022,2787,'_elementor_version','2.8.2'),(9023,2787,'_elementor_data','[{\"id\":\"3b9efef2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6f25af76\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"47c0fc18\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"6d7c7a67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70958a62\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b4b5e2e\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4dcb5986\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2f82a69\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"15af819d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"24736e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9fcf12\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"bf640a8\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"28e82996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"37246c7c\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5473d274\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1cc70213\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"40ad0737\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8b8ab68\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45a40537\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d6d3e1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1720653d\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9024,2787,'rs_page_bg_color',''),(9025,2787,'_wp_old_slug','creative-idea'),(9026,91,'_elementor_controls_usage','a:0:{}'),(9027,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>'),(9028,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:185:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9029,91,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:185:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9030,91,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9031,91,'_additional_settings',''),(9032,91,'_locale','en_US'),(9033,1615,'_elementor_controls_usage','a:0:{}'),(9034,1615,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(9035,1615,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9036,1615,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9037,1615,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9038,1615,'_additional_settings',''),(9039,1615,'_locale','en_US'),(9040,2765,'_edit_last','1'),(9041,2765,'_wp_page_template','default'),(9042,2765,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(9043,2765,'icon_type','image'),(9044,2765,'service_icon',''),(9045,2765,'service_icon_img','a:9:{s:3:\"url\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon1.png\";s:2:\"id\";s:4:\"4231\";s:6:\"height\";s:3:\"148\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:95:\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon1.png\";s:5:\"title\";s:16:\"h9-service-icon1\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(9046,2765,'service_except','Social media marketing is the use of social media platforms to connect with your audience to build your brand, increase sales, and drive website traffic.'),(9047,2765,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(9048,2765,'slide_template',''),(9049,2765,'_elementor_edit_mode','builder'),(9050,2765,'_elementor_template_type','wp-post'),(9051,2765,'_elementor_version','2.8.2'),(9052,2765,'_elementor_data','[{\"id\":\"2d00245b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5725f6e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"612758b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"78a3e845\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"408f4f0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d7a6e2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"56580629\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"7390e67\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"1df4cfb6\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"759630f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d6811fc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"30d74315\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"714ee763\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27e95c60\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"2b48eefc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c707ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4ce6f942\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2919937f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1db12c81\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7de35661\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"513d173c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(9053,2765,'rs_page_bg_color',''),(9054,2765,'_wp_old_slug','web-desiging'),(9055,3823,'_elementor_controls_usage','a:0:{}'),(9056,3823,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>'),(9057,3823,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9058,3823,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:182:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9059,3823,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9060,3823,'_additional_settings',''),(9061,3823,'_locale','en_US'),(9062,3851,'_elementor_controls_usage','a:0:{}'),(9063,3851,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(9064,3851,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:291:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9065,3851,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:291:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9066,3851,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9067,3851,'_additional_settings',''),(9068,3851,'_locale','en_US'),(9069,4006,'_elementor_controls_usage','a:0:{}'),(9070,4006,'_form','<div class=\"input-filled\">[text* company-name placeholder \"Company name\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Mobile number\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Email address\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-default\">Appionment<i class=\"fac fac-angle-right space-left\"></i></button></div>'),(9071,4006,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[company-name]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:188:\"From: [company-name] <[your-email]>\nCompany: [company-name]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9072,4006,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[company-name]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:188:\"From: [company-name] <[your-email]>\nCompany: [company-name]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9073,4006,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9074,4006,'_additional_settings',''),(9075,4006,'_locale','en_US'),(9076,4227,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(9077,4227,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:281:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (http://demoweblinks.in/ctthemes/csuti-coach)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9078,4227,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:281:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (http://demoweblinks.in/ctthemes/csuti-coach)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(9079,4227,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9080,4227,'_additional_settings',''),(9081,4227,'_locale','en_US'),(9082,8388,'_menu_item_type','post_type'),(9083,8388,'_menu_item_menu_item_parent','8361'),(9084,8388,'_menu_item_object_id','32'),(9085,8388,'_menu_item_object','page'),(9086,8388,'_menu_item_target',''),(9087,8388,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9088,8388,'_menu_item_xfn',''),(9089,8388,'_menu_item_url',''),(9090,8389,'_menu_item_type','post_type'),(9091,8389,'_menu_item_menu_item_parent','8361'),(9092,8389,'_menu_item_object_id','30'),(9093,8389,'_menu_item_object','page'),(9094,8389,'_menu_item_target',''),(9095,8389,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9096,8389,'_menu_item_xfn',''),(9097,8389,'_menu_item_url',''),(9098,8390,'_menu_item_type','post_type'),(9099,8390,'_menu_item_menu_item_parent','8361'),(9100,8390,'_menu_item_object_id','28'),(9101,8390,'_menu_item_object','page'),(9102,8390,'_menu_item_target',''),(9103,8390,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9104,8390,'_menu_item_xfn',''),(9105,8390,'_menu_item_url',''),(9106,8391,'_menu_item_type','post_type'),(9107,8391,'_menu_item_menu_item_parent','8361'),(9108,8391,'_menu_item_object_id','26'),(9109,8391,'_menu_item_object','page'),(9110,8391,'_menu_item_target',''),(9111,8391,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9112,8391,'_menu_item_xfn',''),(9113,8391,'_menu_item_url',''),(9122,8393,'_menu_item_type','post_type'),(9123,8393,'_menu_item_menu_item_parent','0'),(9124,8393,'_menu_item_object_id','9'),(9125,8393,'_menu_item_object','page'),(9126,8393,'_menu_item_target',''),(9127,8393,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9128,8393,'_menu_item_xfn',''),(9129,8393,'_menu_item_url',''),(9130,8394,'_menu_item_type','post_type'),(9131,8394,'_menu_item_menu_item_parent','0'),(9132,8394,'_menu_item_object_id','28'),(9133,8394,'_menu_item_object','page'),(9134,8394,'_menu_item_target',''),(9135,8394,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9136,8394,'_menu_item_xfn',''),(9137,8394,'_menu_item_url',''),(9138,8395,'_menu_item_type','post_type'),(9139,8395,'_menu_item_menu_item_parent','0'),(9140,8395,'_menu_item_object_id','30'),(9141,8395,'_menu_item_object','page'),(9142,8395,'_menu_item_target',''),(9143,8395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9144,8395,'_menu_item_xfn',''),(9145,8395,'_menu_item_url',''),(9146,8396,'_menu_item_type','post_type'),(9147,8396,'_menu_item_menu_item_parent','0'),(9148,8396,'_menu_item_object_id','26'),(9149,8396,'_menu_item_object','page'),(9150,8396,'_menu_item_target',''),(9151,8396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9152,8396,'_menu_item_xfn',''),(9153,8396,'_menu_item_url',''),(9162,8398,'_menu_item_type','post_type'),(9163,8398,'_menu_item_menu_item_parent','0'),(9164,8398,'_menu_item_object_id','132'),(9165,8398,'_menu_item_object','page'),(9166,8398,'_menu_item_target',''),(9167,8398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9168,8398,'_menu_item_xfn',''),(9169,8398,'_menu_item_url',''),(9170,8399,'_menu_item_type','post_type'),(9171,8399,'_menu_item_menu_item_parent','8398'),(9172,8399,'_menu_item_object_id','132'),(9173,8399,'_menu_item_object','page'),(9174,8399,'_menu_item_target',''),(9175,8399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9176,8399,'_menu_item_xfn',''),(9177,8399,'_menu_item_url',''),(9178,8400,'_menu_item_type','post_type'),(9179,8400,'_menu_item_menu_item_parent','8398'),(9180,8400,'_menu_item_object_id','129'),(9181,8400,'_menu_item_object','page'),(9182,8400,'_menu_item_target',''),(9183,8400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9184,8400,'_menu_item_xfn',''),(9185,8400,'_menu_item_url',''),(9186,8401,'_menu_item_type','post_type'),(9187,8401,'_menu_item_menu_item_parent','8398'),(9188,8401,'_menu_item_object_id','123'),(9189,8401,'_menu_item_object','page'),(9190,8401,'_menu_item_target',''),(9191,8401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9192,8401,'_menu_item_xfn',''),(9193,8401,'_menu_item_url',''),(9194,8402,'_menu_item_type','post_type'),(9195,8402,'_menu_item_menu_item_parent','8400'),(9196,8402,'_menu_item_object_id','129'),(9197,8402,'_menu_item_object','page'),(9198,8402,'_menu_item_target',''),(9199,8402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9200,8402,'_menu_item_xfn',''),(9201,8402,'_menu_item_url',''),(9202,8403,'_menu_item_type','post_type'),(9203,8403,'_menu_item_menu_item_parent','8400'),(9204,8403,'_menu_item_object_id','127'),(9205,8403,'_menu_item_object','page'),(9206,8403,'_menu_item_target',''),(9207,8403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9208,8403,'_menu_item_xfn',''),(9209,8403,'_menu_item_url',''),(9210,8404,'_menu_item_type','post_type'),(9211,8404,'_menu_item_menu_item_parent','8400'),(9212,8404,'_menu_item_object_id','125'),(9213,8404,'_menu_item_object','page'),(9214,8404,'_menu_item_target',''),(9215,8404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9216,8404,'_menu_item_xfn',''),(9217,8404,'_menu_item_url',''),(9218,8405,'_menu_item_type','post_type'),(9219,8405,'_menu_item_menu_item_parent','8399'),(9220,8405,'_menu_item_object_id','136'),(9221,8405,'_menu_item_object','page'),(9222,8405,'_menu_item_target',''),(9223,8405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9224,8405,'_menu_item_xfn',''),(9225,8405,'_menu_item_url',''),(9226,8406,'_menu_item_type','post_type'),(9227,8406,'_menu_item_menu_item_parent','8399'),(9228,8406,'_menu_item_object_id','134'),(9229,8406,'_menu_item_object','page'),(9230,8406,'_menu_item_target',''),(9231,8406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9232,8406,'_menu_item_xfn',''),(9233,8406,'_menu_item_url',''),(9234,8407,'_menu_item_type','post_type'),(9235,8407,'_menu_item_menu_item_parent','8399'),(9236,8407,'_menu_item_object_id','132'),(9237,8407,'_menu_item_object','page'),(9238,8407,'_menu_item_target',''),(9239,8407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9240,8407,'_menu_item_xfn',''),(9241,8407,'_menu_item_url',''),(9274,8412,'_menu_item_type','post_type'),(9275,8412,'_menu_item_menu_item_parent','8361'),(9276,8412,'_menu_item_object_id','362'),(9277,8412,'_menu_item_object','page'),(9278,8412,'_menu_item_target',''),(9279,8412,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9280,8412,'_menu_item_xfn',''),(9281,8412,'_menu_item_url',''),(9282,8413,'_menu_item_type','post_type'),(9283,8413,'_menu_item_menu_item_parent','8361'),(9284,8413,'_menu_item_object_id','367'),(9285,8413,'_menu_item_object','page'),(9286,8413,'_menu_item_target',''),(9287,8413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9288,8413,'_menu_item_xfn',''),(9289,8413,'_menu_item_url',''),(9290,8414,'_menu_item_type','post_type'),(9291,8414,'_menu_item_menu_item_parent','8416'),(9292,8414,'_menu_item_object_id','409'),(9293,8414,'_menu_item_object','page'),(9294,8414,'_menu_item_target',''),(9295,8414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9296,8414,'_menu_item_xfn',''),(9297,8414,'_menu_item_url',''),(9298,8415,'_menu_item_type','post_type'),(9299,8415,'_menu_item_menu_item_parent','8416'),(9300,8415,'_menu_item_object_id','407'),(9301,8415,'_menu_item_object','page'),(9302,8415,'_menu_item_target',''),(9303,8415,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9304,8415,'_menu_item_xfn',''),(9305,8415,'_menu_item_url',''),(9306,8416,'_menu_item_type','post_type'),(9307,8416,'_menu_item_menu_item_parent','0'),(9308,8416,'_menu_item_object_id','407'),(9309,8416,'_menu_item_object','page'),(9310,8416,'_menu_item_target',''),(9311,8416,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9312,8416,'_menu_item_xfn',''),(9313,8416,'_menu_item_url',''),(9314,8417,'_menu_item_type','post_type'),(9315,8417,'_menu_item_menu_item_parent','8419'),(9316,8417,'_menu_item_object_id','417'),(9317,8417,'_menu_item_object','page'),(9318,8417,'_menu_item_target',''),(9319,8417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9320,8417,'_menu_item_xfn',''),(9321,8417,'_menu_item_url',''),(9322,8418,'_menu_item_type','post_type'),(9323,8418,'_menu_item_menu_item_parent','8419'),(9324,8418,'_menu_item_object_id','415'),(9325,8418,'_menu_item_object','page'),(9326,8418,'_menu_item_target',''),(9327,8418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9328,8418,'_menu_item_xfn',''),(9329,8418,'_menu_item_url',''),(9330,8419,'_menu_item_type','post_type'),(9331,8419,'_menu_item_menu_item_parent','0'),(9332,8419,'_menu_item_object_id','415'),(9333,8419,'_menu_item_object','page'),(9334,8419,'_menu_item_target',''),(9335,8419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9336,8419,'_menu_item_xfn',''),(9337,8419,'_menu_item_url',''),(9338,8420,'_menu_item_type','post_type'),(9339,8420,'_menu_item_menu_item_parent','8416'),(9340,8420,'_menu_item_object_id','8383'),(9341,8420,'_menu_item_object','service'),(9342,8420,'_menu_item_target',''),(9343,8420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9344,8420,'_menu_item_xfn',''),(9345,8420,'_menu_item_url',''),(9346,8421,'_menu_item_type','post_type'),(9347,8421,'_menu_item_menu_item_parent','0'),(9348,8421,'_menu_item_object_id','407'),(9349,8421,'_menu_item_object','page'),(9350,8421,'_menu_item_target',''),(9351,8421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9352,8421,'_menu_item_xfn',''),(9353,8421,'_menu_item_url',''),(9354,8422,'_menu_item_type','post_type'),(9355,8422,'_menu_item_menu_item_parent','0'),(9356,8422,'_menu_item_object_id','367'),(9357,8422,'_menu_item_object','page'),(9358,8422,'_menu_item_target',''),(9359,8422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9360,8422,'_menu_item_xfn',''),(9361,8422,'_menu_item_url',''),(9362,8423,'_menu_item_type','post_type'),(9363,8423,'_menu_item_menu_item_parent','0'),(9364,8423,'_menu_item_object_id','129'),(9365,8423,'_menu_item_object','page'),(9366,8423,'_menu_item_target',''),(9367,8423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9368,8423,'_menu_item_xfn',''),(9369,8423,'_menu_item_url',''),(9370,8424,'_menu_item_type','post_type'),(9371,8424,'_menu_item_menu_item_parent','0'),(9372,8424,'_menu_item_object_id','415'),(9373,8424,'_menu_item_object','page'),(9374,8424,'_menu_item_target',''),(9375,8424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9376,8424,'_menu_item_xfn',''),(9377,8424,'_menu_item_url',''),(9378,8425,'_menu_item_type','post_type'),(9379,8425,'_menu_item_menu_item_parent','8419'),(9380,8425,'_menu_item_object_id','579'),(9381,8425,'_menu_item_object','portfolio'),(9382,8425,'_menu_item_target',''),(9383,8425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9384,8425,'_menu_item_xfn',''),(9385,8425,'_menu_item_url',''),(9386,8426,'_menu_item_type','post_type'),(9387,8426,'_menu_item_menu_item_parent','8428'),(9388,8426,'_menu_item_object_id','749'),(9389,8426,'_menu_item_object','page'),(9390,8426,'_menu_item_target',''),(9391,8426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9392,8426,'_menu_item_xfn',''),(9393,8426,'_menu_item_url',''),(9394,8427,'_menu_item_type','post_type'),(9395,8427,'_menu_item_menu_item_parent','8428'),(9396,8427,'_menu_item_object_id','748'),(9397,8427,'_menu_item_object','page'),(9398,8427,'_menu_item_target',''),(9399,8427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9400,8427,'_menu_item_xfn',''),(9401,8427,'_menu_item_url',''),(9402,8428,'_menu_item_type','post_type'),(9403,8428,'_menu_item_menu_item_parent','8361'),(9404,8428,'_menu_item_object_id','748'),(9405,8428,'_menu_item_object','page'),(9406,8428,'_menu_item_target',''),(9407,8428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9408,8428,'_menu_item_xfn',''),(9409,8428,'_menu_item_url',''),(9410,8429,'_menu_item_type','post_type'),(9411,8429,'_menu_item_menu_item_parent','8428'),(9412,8429,'_menu_item_object_id','783'),(9413,8429,'_menu_item_object','page'),(9414,8429,'_menu_item_target',''),(9415,8429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9416,8429,'_menu_item_xfn',''),(9417,8429,'_menu_item_url',''),(9418,8430,'_menu_item_type','post_type'),(9419,8430,'_menu_item_menu_item_parent','0'),(9420,8430,'_menu_item_object_id','8387'),(9421,8430,'_menu_item_object','service'),(9422,8430,'_menu_item_target',''),(9423,8430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9424,8430,'_menu_item_xfn',''),(9425,8430,'_menu_item_url',''),(9426,8431,'_menu_item_type','post_type'),(9427,8431,'_menu_item_menu_item_parent','0'),(9428,8431,'_menu_item_object_id','8386'),(9429,8431,'_menu_item_object','service'),(9430,8431,'_menu_item_target',''),(9431,8431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9432,8431,'_menu_item_xfn',''),(9433,8431,'_menu_item_url',''),(9434,8432,'_menu_item_type','post_type'),(9435,8432,'_menu_item_menu_item_parent','0'),(9436,8432,'_menu_item_object_id','8384'),(9437,8432,'_menu_item_object','service'),(9438,8432,'_menu_item_target',''),(9439,8432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9440,8432,'_menu_item_xfn',''),(9441,8432,'_menu_item_url',''),(9442,8433,'_menu_item_type','post_type'),(9443,8433,'_menu_item_menu_item_parent','0'),(9444,8433,'_menu_item_object_id','8383'),(9445,8433,'_menu_item_object','service'),(9446,8433,'_menu_item_target',''),(9447,8433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9448,8433,'_menu_item_xfn',''),(9449,8433,'_menu_item_url',''),(9450,8434,'_menu_item_type','post_type'),(9451,8434,'_menu_item_menu_item_parent','0'),(9452,8434,'_menu_item_object_id','8382'),(9453,8434,'_menu_item_object','service'),(9454,8434,'_menu_item_target',''),(9455,8434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9456,8434,'_menu_item_xfn',''),(9457,8434,'_menu_item_url',''),(9458,8435,'_menu_item_type','post_type'),(9459,8435,'_menu_item_menu_item_parent','8361'),(9460,8435,'_menu_item_object_id','1972'),(9461,8435,'_menu_item_object','page'),(9462,8435,'_menu_item_target',''),(9463,8435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9464,8435,'_menu_item_xfn',''),(9465,8435,'_menu_item_url',''),(9466,8436,'_menu_item_type','post_type'),(9467,8436,'_menu_item_menu_item_parent','0'),(9468,8436,'_menu_item_object_id','407'),(9469,8436,'_menu_item_object','page'),(9470,8436,'_menu_item_target',''),(9471,8436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9472,8436,'_menu_item_xfn',''),(9473,8436,'_menu_item_url',''),(9474,8437,'_menu_item_type','post_type'),(9475,8437,'_menu_item_menu_item_parent','8436'),(9476,8437,'_menu_item_object_id','409'),(9477,8437,'_menu_item_object','page'),(9478,8437,'_menu_item_target',''),(9479,8437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9480,8437,'_menu_item_xfn',''),(9481,8437,'_menu_item_url',''),(9482,8438,'_menu_item_type','post_type'),(9483,8438,'_menu_item_menu_item_parent','8436'),(9484,8438,'_menu_item_object_id','8383'),(9485,8438,'_menu_item_object','service'),(9486,8438,'_menu_item_target',''),(9487,8438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9488,8438,'_menu_item_xfn',''),(9489,8438,'_menu_item_url',''),(9490,8439,'_menu_item_type','post_type'),(9491,8439,'_menu_item_menu_item_parent','8436'),(9492,8439,'_menu_item_object_id','407'),(9493,8439,'_menu_item_object','page'),(9494,8439,'_menu_item_target',''),(9495,8439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9496,8439,'_menu_item_xfn',''),(9497,8439,'_menu_item_url',''),(9498,8440,'_menu_item_type','post_type'),(9499,8440,'_menu_item_menu_item_parent','8364'),(9500,8440,'_menu_item_object_id','26'),(9501,8440,'_menu_item_object','page'),(9502,8440,'_menu_item_target',''),(9503,8440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9504,8440,'_menu_item_xfn',''),(9505,8440,'_menu_item_url',''),(9506,8441,'_menu_item_type','post_type'),(9507,8441,'_menu_item_menu_item_parent','8364'),(9508,8441,'_menu_item_object_id','30'),(9509,8441,'_menu_item_object','page'),(9510,8441,'_menu_item_target',''),(9511,8441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9512,8441,'_menu_item_xfn',''),(9513,8441,'_menu_item_url',''),(9514,8442,'_menu_item_type','post_type'),(9515,8442,'_menu_item_menu_item_parent','8364'),(9516,8442,'_menu_item_object_id','32'),(9517,8442,'_menu_item_object','page'),(9518,8442,'_menu_item_target',''),(9519,8442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9520,8442,'_menu_item_xfn',''),(9521,8442,'_menu_item_url',''),(9522,8443,'_menu_item_type','post_type'),(9523,8443,'_menu_item_menu_item_parent','8364'),(9524,8443,'_menu_item_object_id','28'),(9525,8443,'_menu_item_object','page'),(9526,8443,'_menu_item_target',''),(9527,8443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9528,8443,'_menu_item_xfn',''),(9529,8443,'_menu_item_url',''),(9530,8444,'_menu_item_type','post_type'),(9531,8444,'_menu_item_menu_item_parent','8364'),(9532,8444,'_menu_item_object_id','362'),(9533,8444,'_menu_item_object','page'),(9534,8444,'_menu_item_target',''),(9535,8444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9536,8444,'_menu_item_xfn',''),(9537,8444,'_menu_item_url',''),(9538,8445,'_menu_item_type','post_type'),(9539,8445,'_menu_item_menu_item_parent','8364'),(9540,8445,'_menu_item_object_id','367'),(9541,8445,'_menu_item_object','page'),(9542,8445,'_menu_item_target',''),(9543,8445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9544,8445,'_menu_item_xfn',''),(9545,8445,'_menu_item_url',''),(9546,8446,'_menu_item_type','post_type'),(9547,8446,'_menu_item_menu_item_parent','8364'),(9548,8446,'_menu_item_object_id','1972'),(9549,8446,'_menu_item_object','page'),(9550,8446,'_menu_item_target',''),(9551,8446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9552,8446,'_menu_item_xfn',''),(9553,8446,'_menu_item_url',''),(9554,8447,'_menu_item_type','post_type'),(9555,8447,'_menu_item_menu_item_parent','0'),(9556,8447,'_menu_item_object_id','132'),(9557,8447,'_menu_item_object','page'),(9558,8447,'_menu_item_target',''),(9559,8447,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9560,8447,'_menu_item_xfn',''),(9561,8447,'_menu_item_url',''),(9562,8448,'_menu_item_type','post_type'),(9563,8448,'_menu_item_menu_item_parent','8447'),(9564,8448,'_menu_item_object_id','132'),(9565,8448,'_menu_item_object','page'),(9566,8448,'_menu_item_target',''),(9567,8448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9568,8448,'_menu_item_xfn',''),(9569,8448,'_menu_item_url',''),(9570,8449,'_menu_item_type','post_type'),(9571,8449,'_menu_item_menu_item_parent','8447'),(9572,8449,'_menu_item_object_id','123'),(9573,8449,'_menu_item_object','page'),(9574,8449,'_menu_item_target',''),(9575,8449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9576,8449,'_menu_item_xfn',''),(9577,8449,'_menu_item_url',''),(9578,8450,'_menu_item_type','post_type'),(9579,8450,'_menu_item_menu_item_parent','8452'),(9580,8450,'_menu_item_object_id','125'),(9581,8450,'_menu_item_object','page'),(9582,8450,'_menu_item_target',''),(9583,8450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9584,8450,'_menu_item_xfn',''),(9585,8450,'_menu_item_url',''),(9586,8451,'_menu_item_type','post_type'),(9587,8451,'_menu_item_menu_item_parent','8452'),(9588,8451,'_menu_item_object_id','127'),(9589,8451,'_menu_item_object','page'),(9590,8451,'_menu_item_target',''),(9591,8451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9592,8451,'_menu_item_xfn',''),(9593,8451,'_menu_item_url',''),(9594,8452,'_menu_item_type','post_type'),(9595,8452,'_menu_item_menu_item_parent','8447'),(9596,8452,'_menu_item_object_id','129'),(9597,8452,'_menu_item_object','page'),(9598,8452,'_menu_item_target',''),(9599,8452,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9600,8452,'_menu_item_xfn',''),(9601,8452,'_menu_item_url',''),(9602,8453,'_menu_item_type','post_type'),(9603,8453,'_menu_item_menu_item_parent','8448'),(9604,8453,'_menu_item_object_id','134'),(9605,8453,'_menu_item_object','page'),(9606,8453,'_menu_item_target',''),(9607,8453,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9608,8453,'_menu_item_xfn',''),(9609,8453,'_menu_item_url',''),(9610,8454,'_menu_item_type','post_type'),(9611,8454,'_menu_item_menu_item_parent','8448'),(9612,8454,'_menu_item_object_id','136'),(9613,8454,'_menu_item_object','page'),(9614,8454,'_menu_item_target',''),(9615,8454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9616,8454,'_menu_item_xfn',''),(9617,8454,'_menu_item_url',''),(9618,8455,'_menu_item_type','post_type'),(9619,8455,'_menu_item_menu_item_parent','8448'),(9620,8455,'_menu_item_object_id','132'),(9621,8455,'_menu_item_object','page'),(9622,8455,'_menu_item_target',''),(9623,8455,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9624,8455,'_menu_item_xfn',''),(9625,8455,'_menu_item_url',''),(9626,8456,'_menu_item_type','post_type'),(9627,8456,'_menu_item_menu_item_parent','8452'),(9628,8456,'_menu_item_object_id','129'),(9629,8456,'_menu_item_object','page'),(9630,8456,'_menu_item_target',''),(9631,8456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9632,8456,'_menu_item_xfn',''),(9633,8456,'_menu_item_url',''),(9666,8461,'_menu_item_type','post_type'),(9667,8461,'_menu_item_menu_item_parent','8463'),(9668,8461,'_menu_item_object_id','749'),(9669,8461,'_menu_item_object','page'),(9670,8461,'_menu_item_target',''),(9671,8461,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9672,8461,'_menu_item_xfn',''),(9673,8461,'_menu_item_url',''),(9674,8462,'_menu_item_type','post_type'),(9675,8462,'_menu_item_menu_item_parent','8463'),(9676,8462,'_menu_item_object_id','750'),(9677,8462,'_menu_item_object','page'),(9678,8462,'_menu_item_target',''),(9679,8462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9680,8462,'_menu_item_xfn',''),(9681,8462,'_menu_item_url',''),(9682,8463,'_menu_item_type','post_type'),(9683,8463,'_menu_item_menu_item_parent','0'),(9684,8463,'_menu_item_object_id','748'),(9685,8463,'_menu_item_object','page'),(9686,8463,'_menu_item_target',''),(9687,8463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9688,8463,'_menu_item_xfn',''),(9689,8463,'_menu_item_url',''),(9690,8464,'_menu_item_type','post_type'),(9691,8464,'_menu_item_menu_item_parent','8463'),(9692,8464,'_menu_item_object_id','783'),(9693,8464,'_menu_item_object','page'),(9694,8464,'_menu_item_target',''),(9695,8464,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9696,8464,'_menu_item_xfn',''),(9697,8464,'_menu_item_url',''),(9698,8465,'_menu_item_type','post_type'),(9699,8465,'_menu_item_menu_item_parent','8463'),(9700,8465,'_menu_item_object_id','748'),(9701,8465,'_menu_item_object','page'),(9702,8465,'_menu_item_target',''),(9703,8465,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9704,8465,'_menu_item_xfn',''),(9705,8465,'_menu_item_url',''),(9714,8467,'_menu_item_type','post_type'),(9715,8467,'_menu_item_menu_item_parent','0'),(9716,8467,'_menu_item_object_id','415'),(9717,8467,'_menu_item_object','page'),(9718,8467,'_menu_item_target',''),(9719,8467,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9720,8467,'_menu_item_xfn',''),(9721,8467,'_menu_item_url',''),(9722,8468,'_menu_item_type','post_type'),(9723,8468,'_menu_item_menu_item_parent','8467'),(9724,8468,'_menu_item_object_id','417'),(9725,8468,'_menu_item_object','page'),(9726,8468,'_menu_item_target',''),(9727,8468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9728,8468,'_menu_item_xfn',''),(9729,8468,'_menu_item_url',''),(9730,8469,'_menu_item_type','post_type'),(9731,8469,'_menu_item_menu_item_parent','8467'),(9732,8469,'_menu_item_object_id','415'),(9733,8469,'_menu_item_object','page'),(9734,8469,'_menu_item_target',''),(9735,8469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9736,8469,'_menu_item_xfn',''),(9737,8469,'_menu_item_url',''),(9738,8470,'_menu_item_type','post_type'),(9739,8470,'_menu_item_menu_item_parent','8467'),(9740,8470,'_menu_item_object_id','579'),(9741,8470,'_menu_item_object','portfolio'),(9742,8470,'_menu_item_target',''),(9743,8470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9744,8470,'_menu_item_xfn',''),(9745,8470,'_menu_item_url',''),(9746,8471,'_menu_item_type','post_type'),(9747,8471,'_menu_item_menu_item_parent','8443'),(9748,8471,'_menu_item_object_id','3520'),(9749,8471,'_menu_item_object','page'),(9750,8471,'_menu_item_target',''),(9751,8471,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9752,8471,'_menu_item_xfn',''),(9753,8471,'_menu_item_url',''),(9754,8472,'_menu_item_type','post_type'),(9755,8472,'_menu_item_menu_item_parent','8443'),(9756,8472,'_menu_item_object_id','3518'),(9757,8472,'_menu_item_object','page'),(9758,8472,'_menu_item_target',''),(9759,8472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9760,8472,'_menu_item_xfn',''),(9761,8472,'_menu_item_url',''),(9762,8473,'_menu_item_type','post_type'),(9763,8473,'_menu_item_menu_item_parent','8443'),(9764,8473,'_menu_item_object_id','3516'),(9765,8473,'_menu_item_object','page'),(9766,8473,'_menu_item_target',''),(9767,8473,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9768,8473,'_menu_item_xfn',''),(9769,8473,'_menu_item_url',''),(9770,8474,'_menu_item_type','post_type'),(9771,8474,'_menu_item_menu_item_parent','8442'),(9772,8474,'_menu_item_object_id','3504'),(9773,8474,'_menu_item_object','page'),(9774,8474,'_menu_item_target',''),(9775,8474,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9776,8474,'_menu_item_xfn',''),(9777,8474,'_menu_item_url',''),(9778,8475,'_menu_item_type','post_type'),(9779,8475,'_menu_item_menu_item_parent','8445'),(9780,8475,'_menu_item_object_id','3502'),(9781,8475,'_menu_item_object','page'),(9782,8475,'_menu_item_target',''),(9783,8475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9784,8475,'_menu_item_xfn',''),(9785,8475,'_menu_item_url',''),(9786,8476,'_menu_item_type','post_type'),(9787,8476,'_menu_item_menu_item_parent','8445'),(9788,8476,'_menu_item_object_id','3500'),(9789,8476,'_menu_item_object','page'),(9790,8476,'_menu_item_target',''),(9791,8476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9792,8476,'_menu_item_xfn',''),(9793,8476,'_menu_item_url',''),(9794,8477,'_menu_item_type','post_type'),(9795,8477,'_menu_item_menu_item_parent','8445'),(9796,8477,'_menu_item_object_id','3497'),(9797,8477,'_menu_item_object','page'),(9798,8477,'_menu_item_target',''),(9799,8477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9800,8477,'_menu_item_xfn',''),(9801,8477,'_menu_item_url',''),(9826,8481,'_menu_item_type','post_type'),(9827,8481,'_menu_item_menu_item_parent','8440'),(9828,8481,'_menu_item_object_id','26'),(9829,8481,'_menu_item_object','page'),(9830,8481,'_menu_item_target',''),(9831,8481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9832,8481,'_menu_item_xfn',''),(9833,8481,'_menu_item_url',''),(9834,8482,'_menu_item_type','post_type'),(9835,8482,'_menu_item_menu_item_parent','8442'),(9836,8482,'_menu_item_object_id','32'),(9837,8482,'_menu_item_object','page'),(9838,8482,'_menu_item_target',''),(9839,8482,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9840,8482,'_menu_item_xfn',''),(9841,8482,'_menu_item_url',''),(9842,8483,'_menu_item_type','post_type'),(9843,8483,'_menu_item_menu_item_parent','8443'),(9844,8483,'_menu_item_object_id','28'),(9845,8483,'_menu_item_object','page'),(9846,8483,'_menu_item_target',''),(9847,8483,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9848,8483,'_menu_item_xfn',''),(9849,8483,'_menu_item_url',''),(9850,8484,'_menu_item_type','post_type'),(9851,8484,'_menu_item_menu_item_parent','8445'),(9852,8484,'_menu_item_object_id','367'),(9853,8484,'_menu_item_object','page'),(9854,8484,'_menu_item_target',''),(9855,8484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9856,8484,'_menu_item_xfn',''),(9857,8484,'_menu_item_url',''),(9882,8488,'_menu_item_type','post_type'),(9883,8488,'_menu_item_menu_item_parent','8466'),(9884,8488,'_menu_item_object_id','3514'),(9885,8488,'_menu_item_object','page'),(9886,8488,'_menu_item_target',''),(9887,8488,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9888,8488,'_menu_item_xfn',''),(9889,8488,'_menu_item_url',''),(9890,8489,'_menu_item_type','post_type'),(9891,8489,'_menu_item_menu_item_parent','8390'),(9892,8489,'_menu_item_object_id','3520'),(9893,8489,'_menu_item_object','page'),(9894,8489,'_menu_item_target',''),(9895,8489,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9896,8489,'_menu_item_xfn',''),(9897,8489,'_menu_item_url',''),(9898,8490,'_menu_item_type','post_type'),(9899,8490,'_menu_item_menu_item_parent','8390'),(9900,8490,'_menu_item_object_id','3518'),(9901,8490,'_menu_item_object','page'),(9902,8490,'_menu_item_target',''),(9903,8490,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9904,8490,'_menu_item_xfn',''),(9905,8490,'_menu_item_url',''),(9906,8491,'_menu_item_type','post_type'),(9907,8491,'_menu_item_menu_item_parent','8390'),(9908,8491,'_menu_item_object_id','3516'),(9909,8491,'_menu_item_object','page'),(9910,8491,'_menu_item_target',''),(9911,8491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9912,8491,'_menu_item_xfn',''),(9913,8491,'_menu_item_url',''),(9914,8492,'_menu_item_type','post_type'),(9915,8492,'_menu_item_menu_item_parent','8392'),(9916,8492,'_menu_item_object_id','3514'),(9917,8492,'_menu_item_object','page'),(9918,8492,'_menu_item_target',''),(9919,8492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9920,8492,'_menu_item_xfn',''),(9921,8492,'_menu_item_url',''),(9938,8495,'_menu_item_type','post_type'),(9939,8495,'_menu_item_menu_item_parent','8388'),(9940,8495,'_menu_item_object_id','3504'),(9941,8495,'_menu_item_object','page'),(9942,8495,'_menu_item_target',''),(9943,8495,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9944,8495,'_menu_item_xfn',''),(9945,8495,'_menu_item_url',''),(9946,8496,'_menu_item_type','post_type'),(9947,8496,'_menu_item_menu_item_parent','8413'),(9948,8496,'_menu_item_object_id','3502'),(9949,8496,'_menu_item_object','page'),(9950,8496,'_menu_item_target',''),(9951,8496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9952,8496,'_menu_item_xfn',''),(9953,8496,'_menu_item_url',''),(9954,8497,'_menu_item_type','post_type'),(9955,8497,'_menu_item_menu_item_parent','8413'),(9956,8497,'_menu_item_object_id','3500'),(9957,8497,'_menu_item_object','page'),(9958,8497,'_menu_item_target',''),(9959,8497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9960,8497,'_menu_item_xfn',''),(9961,8497,'_menu_item_url',''),(9962,8498,'_menu_item_type','post_type'),(9963,8498,'_menu_item_menu_item_parent','8413'),(9964,8498,'_menu_item_object_id','3497'),(9965,8498,'_menu_item_object','page'),(9966,8498,'_menu_item_target',''),(9967,8498,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9968,8498,'_menu_item_xfn',''),(9969,8498,'_menu_item_url',''),(9994,8502,'_menu_item_type','post_type'),(9995,8502,'_menu_item_menu_item_parent','8391'),(9996,8502,'_menu_item_object_id','26'),(9997,8502,'_menu_item_object','page'),(9998,8502,'_menu_item_target',''),(9999,8502,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10000,8502,'_menu_item_xfn',''),(10001,8502,'_menu_item_url',''),(10002,8503,'_menu_item_type','post_type'),(10003,8503,'_menu_item_menu_item_parent','8390'),(10004,8503,'_menu_item_object_id','28'),(10005,8503,'_menu_item_object','page'),(10006,8503,'_menu_item_target',''),(10007,8503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10008,8503,'_menu_item_xfn',''),(10009,8503,'_menu_item_url',''),(10010,8504,'_menu_item_type','post_type'),(10011,8504,'_menu_item_menu_item_parent','8413'),(10012,8504,'_menu_item_object_id','367'),(10013,8504,'_menu_item_object','page'),(10014,8504,'_menu_item_target',''),(10015,8504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10016,8504,'_menu_item_xfn',''),(10017,8504,'_menu_item_url',''),(10019,4348,'_elementor_page_assets','a:0:{}'),(10021,3876,'_elementor_page_assets','a:0:{}'),(10023,3872,'_elementor_page_assets','a:0:{}'),(10024,4348,'_edit_lock','1642413782:1'),(10025,8505,'_elementor_edit_mode','builder'),(10026,8505,'_elementor_template_type','page'),(10027,8505,'_elementor_version','3.5.3'),(10028,8506,'_elementor_edit_mode','builder'),(10029,8506,'_elementor_template_type','page'),(10030,8506,'_elementor_version','3.5.3'),(10031,8505,'_wp_page_template','default'),(10032,8505,'_elementor_data','[{\"id\":\"6dd9c55f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"css_classes\":\"h9-section-01\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-header.png\",\"id\":4191},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"2d6d30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4997ff00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h8-bg-video.jpg\",\"id\":4138},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style6\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":798,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"60c8c025\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f23730c\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f47f288\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5512377\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d7ce36\"}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"4e4ae6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"33\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"388abf23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/logo-shape.png\",\"id\":4145},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cc32cfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a1f048e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17059816\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-280\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"51\",\"right\":\"0\",\"bottom\":\"145\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"h9-section-02\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b70f06e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"27985b3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"81\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11a1010a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Without consulting, plans stay as plans. so need consulting for marketing\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2decc6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our team\",\"btn_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-white2\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a9ff053\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"21\",\"css_classes\":\"h9-section-03\"},\"elements\":[{\"id\":\"12be4ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#1A2AA9\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dec0643\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"12309217\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d6473a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5fad1b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"1515b11\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields where we provide our services\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Featured Services\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734a4a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.852,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7d88714e\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<b>Service Marketing:<\\/b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1c371c96\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"source\":[\"consultant|service-category\"],\"num_words\":12,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_item\":[]},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25f163dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"522a6259\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"53faedc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-about.png\",\"id\":4201},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-17\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"39bc35ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.96,\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"798d7533\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are Consultio, stablished Since\\n<small>1999.<\\/small>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2e5d1473\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5529cf09\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon1.png\",\"id\":4208},\"title_text\":\"Our Mission\",\"description_text\":\"Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3ac0d51f\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon2.png\",\"id\":4209},\"title_text\":\"Our Value\",\"description_text\":\"A client once told us that where others focus on one star one issue we see the whole sky. \",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"672e794a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#EEF5FB\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-section-01.png\",\"id\":4223},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"085\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"1ba36d49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26a9c57c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49d98c9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"1dd6699a\",\"elType\":\"widget\",\"settings\":{\"title\":\"All services which we have provided\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"36add17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043},\"elements\":[{\"id\":\"507a96fd\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Definition of <b>Provide Services. Provide Services<\\/b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance<\\/b> to a person, business or other entity.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f17b11c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"source\":[\"solutions|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"95\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeIn\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"79621ab6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"fas fa-user-cog\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2507be0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-case-studies\"},\"elements\":[{\"id\":\"69ddaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ad6d9e5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7657b1ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"2b048ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"A case study focuses on a single event.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"23e5beb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043},\"elements\":[{\"id\":\"4921d2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A <b>case study<\\/b> is an in-depth study of one person, group, or event. Much of Freud\'s work and theories were developed through the use of individual <b>case studies.<\\/b>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c51ba75\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"layout\":\"3\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48aa95b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"2c56eaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bf26476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"640afa5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"46a74c88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"68d0548b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f94d6d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7bf284b8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"3a42510f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a8a28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"6580c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"63f35344\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f3aedf4\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"154e56b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"670d0412\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57845b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20803138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"7bacee45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some easy steps for processing\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Steps\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"426427f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"7aab2f08\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3528c2a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-speed\",\"library\":\"flaticonv2\"},\"title\":\"Contact us first\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Contact us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dda8279\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"title\":\"Consult with us\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Appoinment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e8384d\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Place Order\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Order now\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edb64ef\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-banknote\",\"library\":\"flaticonv2\"},\"title\":\"Make Payment\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"02a4fa6\"}]},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56153f8c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"602628cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"714d92d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e288c0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"32d31c15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to do business with us?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Contact\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"67ec7dad\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"589bdef9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-address-book\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"btn_bg_color\":\"#05C3EF\",\"btn_bg_color_hover\":\"#135ABF\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"5c97c957\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71f1fb5e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e55f1f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"126d2dd3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"91aeee6\"},{\"tab_title\":\"Our Mission\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"8303bab\"},{\"tab_title\":\"Payroll Service\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"bdab1d1\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"3c7cbffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3991021d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-map.png\",\"id\":4301},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46768c96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bee44b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c463ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.083,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"634761df\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have achieved great Funfacts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Fun facts\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"e678a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.877,\"_inline_size_tablet\":40},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cdd491\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"614cc9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"642633ac\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":24,\"suffix\":\"k\",\"title\":\"Happy <cite>Clients<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1a49a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2eeb2c9b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":36,\"suffix\":\"+\",\"title\":\"Expert <cite>Team<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e8ce20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68a60672\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":15,\"suffix\":\"+\",\"title\":\"Awards <cite>Winner<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1e7fa8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44519a46\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":110,\"suffix\":\"+\",\"title\":\"Positive <cite>Reviews<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c867cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"1614fc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249bf5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57a69b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"3cd8cfc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Pricing\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"76fbf5f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e843309\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34e70ef3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"46f3f672\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10033,8507,'_elementor_edit_mode','builder'),(10034,8507,'_elementor_template_type','page'),(10035,8507,'_elementor_version','3.5.3'),(10036,8507,'_wp_page_template','default'),(10037,8507,'_elementor_data','[{\"id\":\"6dd9c55f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"css_classes\":\"h9-section-01\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-header.png\",\"id\":4191},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"2d6d30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"33\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4997ff00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h8-bg-video.jpg\",\"id\":4138},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style6\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":798,\"sizes\":[]},\"image_height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"img_size\":\"full\"},\"elements\":[],\"widgetType\":\"ct_video_player\"},{\"id\":\"60c8c025\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f23730c\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f47f288\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5512377\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2d7ce36\"}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"4e4ae6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"33\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"388abf23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/logo-shape.png\",\"id\":4145},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cc32cfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Prosper in this volatile market funding.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":72,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a1f048e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17059816\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-280\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"51\",\"right\":\"0\",\"bottom\":\"145\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"h9-section-02\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b70f06e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"27985b3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"81\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11a1010a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Without consulting, plans stay as plans. so need consulting for marketing\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2decc6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our team\",\"btn_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-white2\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/team-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a9ff053\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"21\",\"css_classes\":\"h9-section-03\"},\"elements\":[{\"id\":\"12be4ecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#1A2AA9\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.64,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dec0643\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"12309217\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d6473a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5fad1b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"1515b11\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields where we provide our services\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Featured Services\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734a4a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.852,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7d88714e\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<b>Service Marketing:<\\/b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"57\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1c371c96\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"limit\":4,\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"source\":[\"consultant|service-category\"],\"num_words\":12,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_item\":[]},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25f163dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"96\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"522a6259\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"53faedc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-about.png\",\"id\":4201},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-17\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"39bc35ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.96,\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"42\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"798d7533\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are Consultio, stablished Since\\n<small>1999.<\\/small>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style3\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2e5d1473\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"5529cf09\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon1.png\",\"id\":4208},\"title_text\":\"Our Mission\",\"description_text\":\"Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3ac0d51f\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-icon2.png\",\"id\":4209},\"title_text\":\"Our Value\",\"description_text\":\"A client once told us that where others focus on one star one issue we see the whole sky. \",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"672e794a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#EEF5FB\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-section-01.png\",\"id\":4223},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"085\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"1ba36d49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"26a9c57c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49d98c9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"1dd6699a\",\"elType\":\"widget\",\"settings\":{\"title\":\"All services which we have provided\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"36add17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043},\"elements\":[{\"id\":\"507a96fd\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Definition of <b>Provide Services. Provide Services<\\/b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance<\\/b> to a person, business or other entity.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f17b11c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"source\":[\"solutions|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"95\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeIn\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"79621ab6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/services-v-1\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_icon\":{\"value\":\"fas fa-user-cog\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2507be0b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-case-studies\"},\"elements\":[{\"id\":\"69ddaec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ad6d9e5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7657b1ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"2b048ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"A case study focuses on a single event.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"23e5beb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043},\"elements\":[{\"id\":\"4921d2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"A <b>case study<\\/b> is an in-depth study of one person, group, or event. Much of Freud\'s work and theories were developed through the use of individual <b>case studies.<\\/b>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c51ba75\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"layout\":\"3\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48aa95b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"2c56eaa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3bf26476\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"640afa5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"46a74c88\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"68d0548b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f94d6d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7bf284b8\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"3a42510f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a8a28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"6580c0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"63f35344\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f3aedf4\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"154e56b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"670d0412\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"57845b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20803138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"7bacee45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some easy steps for processing\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Steps\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"426427f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043,\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"7aab2f08\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3528c2a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-speed\",\"library\":\"flaticonv2\"},\"title\":\"Contact us first\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Contact us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dda8279\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"title\":\"Consult with us\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Appoinment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e8384d\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Place Order\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Order now\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edb64ef\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-banknote\",\"library\":\"flaticonv2\"},\"title\":\"Make Payment\",\"description\":\"Lorem ipsum dolor sit amet, csectetur adipis icing.\",\"btn_text\":\"Payment\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"02a4fa6\"}]},\"elements\":[],\"widgetType\":\"ct_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56153f8c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"602628cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"714d92d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e288c0a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"32d31c15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to do business with us?\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Contact\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"67ec7dad\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"589bdef9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-address-book\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"style\":\"btn-third\",\"btn_bg_color\":\"#05C3EF\",\"btn_bg_color_hover\":\"#135ABF\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"5c97c957\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71f1fb5e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e55f1f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"126d2dd3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"91aeee6\"},{\"tab_title\":\"Our Mission\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"8303bab\"},{\"tab_title\":\"Payroll Service\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"_id\":\"bdab1d1\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"3c7cbffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3991021d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/h9-bg-map.png\",\"id\":4301},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46768c96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bee44b8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c463ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.083,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"634761df\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have achieved great Funfacts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Fun facts\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"e678a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.877,\"_inline_size_tablet\":40},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cdd491\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"614cc9ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"642633ac\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":24,\"suffix\":\"k\",\"title\":\"Happy <cite>Clients<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1a49a802\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2eeb2c9b\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":36,\"suffix\":\"+\",\"title\":\"Expert <cite>Team<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5e8ce20\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"68a60672\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":15,\"suffix\":\"+\",\"title\":\"Awards <cite>Winner<\\/cite>\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"1e7fa8c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44519a46\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"ending_number\":110,\"suffix\":\"+\",\"title\":\"Positive <cite>Reviews<\\/cite>\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c867cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"1614fc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"249bf5e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57a69b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917},\"elements\":[{\"id\":\"3cd8cfc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Pricing\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#135ABF\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"76fbf5f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.043,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e843309\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"34e70ef3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"46f3f672\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10038,8505,'_elementor_page_assets','a:0:{}'),(10047,8509,'_elementor_edit_mode','builder'),(10048,8509,'_elementor_template_type','wp-page'),(10049,8509,'_elementor_version','3.5.3'),(10050,8509,'_wp_page_template','default'),(10051,8509,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10052,8509,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10053,8509,'_elementor_page_assets','a:0:{}'),(10054,8510,'_elementor_edit_mode','builder'),(10055,8510,'_elementor_template_type','wp-page'),(10056,8510,'_elementor_version','3.5.3'),(10057,8510,'_wp_page_template','default'),(10058,8510,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10059,8510,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10060,8510,'_elementor_page_assets','a:0:{}'),(10061,8511,'_elementor_edit_mode','builder'),(10062,8511,'_elementor_template_type','wp-page'),(10063,8511,'_elementor_version','3.5.3'),(10064,8511,'_wp_page_template','default'),(10065,8511,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10066,8511,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10067,8511,'_elementor_page_assets','a:0:{}'),(10069,8512,'_menu_item_type','post_type'),(10070,8512,'_menu_item_menu_item_parent','0'),(10071,8512,'_menu_item_object_id','9'),(10072,8512,'_menu_item_object','page'),(10073,8512,'_menu_item_target',''),(10074,8512,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10075,8512,'_menu_item_xfn',''),(10076,8512,'_menu_item_url',''),(10087,8514,'_menu_item_type','custom'),(10088,8514,'_menu_item_menu_item_parent','0'),(10089,8514,'_menu_item_object_id','8514'),(10090,8514,'_menu_item_object','custom'),(10091,8514,'_menu_item_target',''),(10092,8514,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10093,8514,'_menu_item_xfn',''),(10094,8514,'_menu_item_url','#'),(10096,8515,'_menu_item_type','custom'),(10097,8515,'_menu_item_menu_item_parent','0'),(10098,8515,'_menu_item_object_id','8515'),(10099,8515,'_menu_item_object','custom'),(10100,8515,'_menu_item_target',''),(10101,8515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10102,8515,'_menu_item_xfn',''),(10103,8515,'_menu_item_url','#'),(10105,8516,'_menu_item_type','custom'),(10106,8516,'_menu_item_menu_item_parent','0'),(10107,8516,'_menu_item_object_id','8516'),(10108,8516,'_menu_item_object','custom'),(10109,8516,'_menu_item_target',''),(10110,8516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10111,8516,'_menu_item_xfn',''),(10112,8516,'_menu_item_url','#'),(10123,8512,'_menu_item_ct_megaprofile','0'),(10124,8512,'_menu_item_ct_icon',''),(10125,8512,'_menu_item_ct_onepage','no-one-page'),(10126,8512,'_menu_item_ct_onepage_offset',''),(10127,8512,'_menu_item_ct_custom_class',''),(10128,8512,'_menu_item_ct_menu_marker',''),(10135,8514,'_menu_item_ct_megaprofile','0'),(10136,8514,'_menu_item_ct_icon',''),(10137,8514,'_menu_item_ct_onepage','no-one-page'),(10138,8514,'_menu_item_ct_onepage_offset',''),(10139,8514,'_menu_item_ct_custom_class',''),(10140,8514,'_menu_item_ct_menu_marker',''),(10141,8515,'_menu_item_ct_megaprofile','0'),(10142,8515,'_menu_item_ct_icon',''),(10143,8515,'_menu_item_ct_onepage','no-one-page'),(10144,8515,'_menu_item_ct_onepage_offset',''),(10145,8515,'_menu_item_ct_custom_class',''),(10146,8515,'_menu_item_ct_menu_marker',''),(10147,8516,'_menu_item_ct_megaprofile','0'),(10148,8516,'_menu_item_ct_icon',''),(10149,8516,'_menu_item_ct_onepage','no-one-page'),(10150,8516,'_menu_item_ct_onepage_offset',''),(10151,8516,'_menu_item_ct_custom_class',''),(10152,8516,'_menu_item_ct_menu_marker',''),(10159,8518,'_wp_attached_file','2022/01/logo-11.png'),(10160,8518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:87;s:4:\"file\";s:19:\"2022/01/logo-11.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-11-150x87.png\";s:5:\"width\";i:150;s:6:\"height\";i:87;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:{}}}'),(10171,4337,'_elementor_page_assets','a:0:{}'),(10173,4339,'_elementor_page_assets','a:0:{}'),(10176,8523,'_wp_attached_file','2022/01/img1_1170x450_acf_cropped.png'),(10177,8523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:450;s:4:\"file\";s:37:\"2022/01/img1_1170x450_acf_cropped.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"img1_1170x450_acf_cropped-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"img1_1170x450_acf_cropped-1024x394.png\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"img1_1170x450_acf_cropped-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:\"img1_1170x450_acf_cropped-768x295.png\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:37:\"img1_1170x450_acf_cropped-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:37:\"img1_1170x450_acf_cropped-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(10178,8524,'_wp_attached_file','2022/01/slider4-1.jpg'),(10179,8524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:450;s:4:\"file\";s:21:\"2022/01/slider4-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"slider4-1-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"slider4-1-1024x394.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"slider4-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:21:\"slider4-1-768x295.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"slider4-1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"slider4-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(10180,8525,'_elementor_edit_mode','builder'),(10181,8525,'_elementor_template_type','wp-page'),(10182,8525,'_elementor_version','3.5.3'),(10183,8525,'_wp_page_template','default'),(10184,8525,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10185,8525,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10186,8525,'_elementor_page_assets','a:0:{}'),(10188,8526,'_elementor_edit_mode','builder'),(10189,8526,'_elementor_template_type','wp-page'),(10190,8526,'_elementor_version','3.5.3'),(10191,8526,'_wp_page_template','default'),(10192,8526,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10193,8526,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10194,8526,'_elementor_page_assets','a:0:{}'),(10196,8527,'_elementor_edit_mode','builder'),(10197,8527,'_elementor_template_type','wp-page'),(10198,8527,'_elementor_version','3.5.3'),(10199,8527,'_wp_page_template','default'),(10200,8527,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10201,8527,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10202,8527,'_elementor_page_assets','a:0:{}'),(10204,8528,'_elementor_edit_mode','builder'),(10205,8528,'_elementor_template_type','wp-page'),(10206,8528,'_elementor_version','3.5.3'),(10207,8528,'_wp_page_template','default'),(10208,8528,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10209,8528,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10210,8528,'_elementor_page_assets','a:0:{}'),(10211,8529,'_elementor_edit_mode','builder'),(10212,8529,'_elementor_template_type','wp-page'),(10213,8529,'_elementor_version','3.5.3'),(10214,8529,'_wp_page_template','default'),(10215,8529,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10216,8529,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10217,8529,'_elementor_page_assets','a:0:{}'),(10218,8530,'_elementor_edit_mode','builder'),(10219,8530,'_elementor_template_type','wp-page'),(10220,8530,'_elementor_version','3.5.3'),(10221,8530,'_wp_page_template','default'),(10222,8530,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10223,8530,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10224,8530,'_elementor_page_assets','a:0:{}'),(10226,8531,'_elementor_edit_mode','builder'),(10227,8531,'_elementor_template_type','wp-page'),(10228,8531,'_elementor_version','3.5.3'),(10229,8531,'_wp_page_template','default'),(10230,8531,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10231,8531,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10232,8531,'_elementor_page_assets','a:0:{}'),(10234,8532,'_elementor_edit_mode','builder'),(10235,8532,'_elementor_template_type','wp-page'),(10236,8532,'_elementor_version','3.5.3'),(10237,8532,'_wp_page_template','default'),(10238,8532,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style7\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10239,8532,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10240,8532,'_elementor_page_assets','a:0:{}'),(10242,8533,'_elementor_edit_mode','builder'),(10243,8533,'_elementor_template_type','wp-page'),(10244,8533,'_elementor_version','3.5.3'),(10245,8533,'_wp_page_template','default'),(10246,8533,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10247,8533,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10248,8533,'_elementor_page_assets','a:0:{}'),(10257,8174,'_edit_lock','1642427511:1'),(10258,8535,'_elementor_edit_mode','builder'),(10259,8535,'_elementor_template_type','wp-page'),(10260,8535,'_elementor_version','3.5.3'),(10261,8535,'_wp_page_template','default'),(10262,8535,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10263,8535,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10264,8535,'_elementor_page_assets','a:0:{}'),(10265,8536,'_elementor_edit_mode','builder'),(10266,8536,'_elementor_template_type','wp-page'),(10267,8536,'_elementor_version','3.5.3'),(10268,8536,'_wp_page_template','default'),(10269,8536,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10270,8536,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10271,8536,'_elementor_page_assets','a:0:{}'),(10272,8537,'_elementor_edit_mode','builder'),(10273,8537,'_elementor_template_type','wp-page'),(10274,8537,'_elementor_version','3.5.3'),(10275,8537,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (10276,8537,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"_background_color\":\"#00ADEF\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10277,8537,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10278,8537,'_elementor_page_assets','a:0:{}'),(10279,8538,'_elementor_edit_mode','builder'),(10280,8538,'_elementor_template_type','wp-page'),(10281,8538,'_elementor_version','3.5.3'),(10282,8538,'_wp_page_template','default'),(10283,8538,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"_background_color\":\"#00ADEF\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10284,8538,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10285,8538,'_elementor_page_assets','a:0:{}'),(10286,8539,'_elementor_edit_mode','builder'),(10287,8539,'_elementor_template_type','wp-page'),(10288,8539,'_elementor_version','3.5.3'),(10289,8539,'_wp_page_template','default'),(10290,8539,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"_background_color\":\"#00ADEF\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10291,8539,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10292,8539,'_elementor_page_assets','a:0:{}'),(10293,8540,'_elementor_edit_mode','builder'),(10294,8540,'_elementor_template_type','wp-page'),(10295,8540,'_elementor_version','3.5.3'),(10296,8540,'_wp_page_template','default'),(10297,8540,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10298,8540,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10299,8540,'_elementor_page_assets','a:0:{}'),(10301,8512,'_wp_old_date','2022-01-17'),(10303,8514,'_wp_old_date','2022-01-17'),(10304,8515,'_wp_old_date','2022-01-17'),(10305,8516,'_wp_old_date','2022-01-17'),(10347,8557,'_elementor_edit_mode','builder'),(10348,8557,'_elementor_template_type','wp-page'),(10349,8557,'_elementor_version','3.5.3'),(10350,8557,'_wp_page_template','default'),(10351,8557,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10352,8557,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10353,8557,'_elementor_page_assets','a:0:{}'),(10355,8558,'_elementor_edit_mode','builder'),(10356,8558,'_elementor_template_type','wp-page'),(10357,8558,'_elementor_version','3.5.3'),(10358,8558,'_wp_page_template','default'),(10359,8558,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.84,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.33},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.67,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a75989a\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"description\":\"Please send your queries using the form below and we will get in touch with you.\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"_background_background\":\"classic\",\"input_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10360,8558,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10361,8558,'_elementor_page_assets','a:0:{}'),(10363,8559,'_elementor_edit_mode','builder'),(10364,8559,'_elementor_template_type','wp-page'),(10365,8559,'_elementor_version','3.5.3'),(10366,8559,'_wp_page_template','default'),(10367,8559,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10368,8559,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10369,8559,'_elementor_page_assets','a:0:{}'),(10372,8560,'_elementor_edit_mode','builder'),(10373,8560,'_elementor_template_type','wp-page'),(10374,8560,'_elementor_version','3.5.3'),(10375,8560,'_wp_page_template','default'),(10376,8560,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10377,8560,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10378,8560,'_elementor_page_assets','a:0:{}'),(10380,8561,'_elementor_edit_mode','builder'),(10381,8561,'_elementor_template_type','wp-page'),(10382,8561,'_elementor_version','3.5.3'),(10383,8561,'_wp_page_template','default'),(10384,8561,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style11\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10385,8561,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10386,8561,'_elementor_page_assets','a:0:{}'),(10388,8562,'_elementor_edit_mode','builder'),(10389,8562,'_elementor_template_type','wp-page'),(10390,8562,'_elementor_version','3.5.3'),(10391,8562,'_wp_page_template','default'),(10392,8562,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10393,8562,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10394,8562,'_elementor_page_assets','a:0:{}'),(10405,20,'_edit_lock','1646374788:1'),(10406,8564,'_wp_page_template','default'),(10407,8564,'_elementor_edit_mode','builder'),(10408,8564,'_elementor_template_type','wp-post'),(10409,8564,'_elementor_version','3.1.4'),(10410,8564,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":36,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/logo-dark.png\",\"id\":7042},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio has been optimized to give your visitors the best experience in terms of UX\\/UI, with a unique design to deliver all layouts.\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"630400b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-footer-links\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b078bb7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-support\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Case-Themes<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10411,8564,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10412,8564,'_elementor_page_assets','a:0:{}'),(10414,8565,'_wp_page_template','default'),(10415,8565,'_elementor_edit_mode','builder'),(10416,8565,'_elementor_template_type','wp-post'),(10417,8565,'_elementor_version','3.1.4'),(10418,8565,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":36,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Links\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"630400b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-footer-links\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":19,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b078bb7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-support\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":26,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#007EF2\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Case-Themes<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10419,8565,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10420,8565,'_elementor_page_assets','a:0:{}'),(10429,8567,'_wp_page_template','default'),(10430,8567,'_elementor_edit_mode','builder'),(10431,8567,'_elementor_template_type','wp-post'),(10432,8567,'_elementor_version','3.5.3'),(10433,8567,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"630400b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-footer-links\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b078bb7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-support\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Case-Themes<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10434,8567,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10435,8567,'_elementor_page_assets','a:0:{}'),(10436,8568,'_wp_page_template','default'),(10437,8568,'_elementor_edit_mode','builder'),(10438,8568,'_elementor_template_type','wp-post'),(10439,8568,'_elementor_version','3.5.3'),(10440,8568,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Support\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"b078bb7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-support\",\"style\":\"one-col-light\",\"link_color\":\"#666666\",\"link_color_hover\":\"#007EF2\",\"line_color_hover\":\"#007EF2\",\"link_typography_typography\":\"custom\",\"link_typography_font_family\":\"Poppins\",\"link_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"item_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Case-Themes<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10441,8568,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10442,8568,'_elementor_page_assets','a:0:{}'),(10443,8569,'_wp_page_template','default'),(10444,8569,'_elementor_edit_mode','builder'),(10445,8569,'_elementor_template_type','wp-post'),(10446,8569,'_elementor_version','3.5.3'),(10447,8569,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"title_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10448,8569,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10449,8569,'_elementor_page_assets','a:0:{}'),(10450,8570,'_wp_page_template','default'),(10451,8570,'_elementor_edit_mode','builder'),(10452,8570,'_elementor_template_type','wp-post'),(10453,8570,'_elementor_version','3.5.3'),(10454,8570,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"93a2f8b\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"edafe01\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10455,8570,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10456,8570,'_elementor_page_assets','a:0:{}'),(10458,8571,'_wp_page_template','default'),(10459,8571,'_elementor_edit_mode','builder'),(10460,8571,'_elementor_template_type','wp-post'),(10461,8571,'_elementor_version','3.5.3'),(10462,8571,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10463,8571,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10464,8571,'_elementor_page_assets','a:0:{}'),(10468,8572,'_wp_page_template','default'),(10469,8572,'_elementor_edit_mode','builder'),(10470,8572,'_elementor_template_type','wp-post'),(10471,8572,'_elementor_version','3.5.3'),(10472,8572,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10473,8572,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10474,8572,'_elementor_page_assets','a:0:{}'),(10477,8573,'_elementor_edit_mode','builder'),(10478,8573,'_elementor_template_type','wp-page'),(10479,8573,'_elementor_version','3.5.3'),(10480,8573,'_wp_page_template','default'),(10481,8573,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10482,8573,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10483,8573,'_elementor_page_assets','a:0:{}'),(10485,8574,'_elementor_edit_mode','builder'),(10486,8574,'_elementor_template_type','wp-page'),(10487,8574,'_elementor_version','3.5.3'),(10488,8574,'_wp_page_template','default'),(10489,8574,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10490,8574,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10491,8574,'_elementor_page_assets','a:0:{}'),(10493,8575,'_elementor_edit_mode','builder'),(10494,8575,'_elementor_template_type','wp-page'),(10495,8575,'_elementor_version','3.5.3'),(10496,8575,'_wp_page_template','default'),(10497,8575,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebd3a36\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"904aa16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"style\":\"style5\",\"img_style\":\"default\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10498,8575,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10499,8575,'_elementor_page_assets','a:0:{}'),(10503,5357,'_elementor_page_assets','a:0:{}'),(10512,8577,'_elementor_edit_mode','builder'),(10513,8577,'_elementor_template_type','wp-page'),(10514,8577,'_elementor_version','3.5.3'),(10515,8577,'_wp_page_template','default'),(10516,8577,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebd3a36\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"904aa16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"style\":\"style5\",\"img_style\":\"default\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10517,8577,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10518,8577,'_elementor_page_assets','a:0:{}'),(10519,8578,'_elementor_edit_mode','builder'),(10520,8578,'_elementor_template_type','wp-page'),(10521,8578,'_elementor_version','3.5.3'),(10522,8578,'_wp_page_template','default'),(10523,8578,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebd3a36\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8e43190\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"904aa16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"style\":\"style5\",\"img_style\":\"default\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(10524,8578,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10525,8578,'_elementor_page_assets','a:0:{}'),(10526,8579,'_elementor_edit_mode','builder'),(10527,8579,'_elementor_template_type','wp-page'),(10528,8579,'_elementor_version','3.5.3'),(10529,8579,'_wp_page_template','default'),(10530,8579,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"298d8d78\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"61329b16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2becf198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7a0f79dc\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"4b6f180f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4759de0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"657c44f0\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"15673ec6\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false}]'),(10531,8579,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10532,8579,'_elementor_page_assets','a:0:{}'),(10534,8580,'_elementor_edit_mode','builder'),(10535,8580,'_elementor_template_type','wp-page'),(10536,8580,'_elementor_version','3.5.3'),(10537,8580,'_wp_page_template','default'),(10538,8580,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"298d8d78\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"61329b16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2becf198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7a0f79dc\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"4b6f180f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4759de0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"657c44f0\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"15673ec6\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false}]'),(10539,8580,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10540,8580,'_elementor_page_assets','a:0:{}'),(10542,8581,'_elementor_edit_mode','builder'),(10543,8581,'_elementor_template_type','wp-page'),(10544,8581,'_elementor_version','3.5.3'),(10545,8581,'_wp_page_template','default'),(10546,8581,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"298d8d78\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"61329b16\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2becf198\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7a0f79dc\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"4b6f180f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4759de0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"657c44f0\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"15673ec6\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false}]'),(10547,8581,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10548,8581,'_elementor_page_assets','a:0:{}'),(10550,8582,'_elementor_edit_mode','builder'),(10551,8582,'_elementor_template_type','wp-page'),(10552,8582,'_elementor_version','3.5.3'),(10553,8582,'_wp_page_template','default'),(10554,8582,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10555,8582,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10556,8582,'_elementor_page_assets','a:0:{}'),(10558,8583,'_elementor_edit_mode','builder'),(10559,8583,'_elementor_template_type','wp-page'),(10560,8583,'_elementor_version','3.5.3'),(10561,8583,'_wp_page_template','default'),(10562,8583,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10563,8583,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10564,8583,'_elementor_page_assets','a:0:{}'),(10565,8584,'_elementor_edit_mode','builder'),(10566,8584,'_elementor_template_type','wp-page'),(10567,8584,'_elementor_version','3.5.3'),(10568,8584,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (10569,8584,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10570,8584,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10571,8584,'_elementor_page_assets','a:0:{}'),(10572,8585,'_elementor_edit_mode','builder'),(10573,8585,'_elementor_template_type','wp-page'),(10574,8585,'_elementor_version','3.5.3'),(10575,8585,'_wp_page_template','default'),(10576,8585,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10577,8585,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10578,8585,'_elementor_page_assets','a:0:{}'),(10580,8586,'_elementor_edit_mode','builder'),(10581,8586,'_elementor_template_type','wp-page'),(10582,8586,'_elementor_version','3.5.3'),(10583,8586,'_wp_page_template','default'),(10584,8586,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10585,8586,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10586,8586,'_elementor_page_assets','a:0:{}'),(10588,8587,'_elementor_edit_mode','builder'),(10589,8587,'_elementor_template_type','wp-page'),(10590,8587,'_elementor_version','3.5.3'),(10591,8587,'_wp_page_template','default'),(10592,8587,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10593,8587,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10594,8587,'_elementor_page_assets','a:0:{}'),(10596,8588,'_elementor_edit_mode','builder'),(10597,8588,'_elementor_template_type','wp-page'),(10598,8588,'_elementor_version','3.5.3'),(10599,8588,'_wp_page_template','default'),(10600,8588,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10601,8588,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10602,8588,'_elementor_page_assets','a:0:{}'),(10604,8589,'_elementor_edit_mode','builder'),(10605,8589,'_elementor_template_type','wp-page'),(10606,8589,'_elementor_version','3.5.3'),(10607,8589,'_wp_page_template','default'),(10608,8589,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10609,8589,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10610,8589,'_elementor_page_assets','a:0:{}'),(10611,8590,'_elementor_edit_mode','builder'),(10612,8590,'_elementor_template_type','wp-page'),(10613,8590,'_elementor_version','3.5.3'),(10614,8590,'_wp_page_template','default'),(10615,8590,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10616,8590,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10617,8590,'_elementor_page_assets','a:0:{}'),(10618,8591,'_elementor_edit_mode','builder'),(10619,8591,'_elementor_template_type','wp-page'),(10620,8591,'_elementor_version','3.5.3'),(10621,8591,'_wp_page_template','default'),(10622,8591,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10623,8591,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10624,8591,'_elementor_page_assets','a:0:{}'),(10626,8592,'_elementor_edit_mode','builder'),(10627,8592,'_elementor_template_type','wp-page'),(10628,8592,'_elementor_version','3.5.3'),(10629,8592,'_wp_page_template','default'),(10630,8592,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10631,8592,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10632,8592,'_elementor_page_assets','a:0:{}'),(10634,8593,'_elementor_edit_mode','builder'),(10635,8593,'_elementor_template_type','wp-page'),(10636,8593,'_elementor_version','3.5.3'),(10637,8593,'_wp_page_template','default'),(10638,8593,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10639,8593,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10640,8593,'_elementor_page_assets','a:0:{}'),(10642,8594,'_elementor_edit_mode','builder'),(10643,8594,'_elementor_template_type','wp-page'),(10644,8594,'_elementor_version','3.5.3'),(10645,8594,'_wp_page_template','default'),(10646,8594,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"},\"background_overlay\":\"#0A0462\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10647,8594,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10648,8594,'_elementor_page_assets','a:0:{}'),(10651,8595,'_elementor_edit_mode','builder'),(10652,8595,'_elementor_template_type','wp-page'),(10653,8595,'_elementor_version','3.5.3'),(10654,8595,'_wp_page_template','default'),(10655,8595,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"},\"background_overlay\":\"#0A0462\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10656,8595,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10657,8595,'_elementor_page_assets','a:0:{}'),(10659,8596,'_elementor_edit_mode','builder'),(10660,8596,'_elementor_template_type','wp-page'),(10661,8596,'_elementor_version','3.5.3'),(10662,8596,'_wp_page_template','default'),(10663,8596,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"},\"background_overlay\":\"#0A0462\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10664,8596,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10665,8596,'_elementor_page_assets','a:0:{}'),(10667,8597,'_elementor_edit_mode','builder'),(10668,8597,'_elementor_template_type','wp-page'),(10669,8597,'_elementor_version','3.5.3'),(10670,8597,'_wp_page_template','default'),(10671,8597,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10672,8597,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10673,8597,'_elementor_page_assets','a:0:{}'),(10676,8598,'_wp_page_template','default'),(10677,8598,'_elementor_edit_mode','builder'),(10678,8598,'_elementor_template_type','wp-post'),(10679,8598,'_elementor_version','3.5.3'),(10680,8598,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@envato.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10681,8598,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10682,8598,'_elementor_page_assets','a:0:{}'),(10684,8599,'_wp_page_template','default'),(10685,8599,'_elementor_edit_mode','builder'),(10686,8599,'_elementor_template_type','wp-post'),(10687,8599,'_elementor_version','3.5.3'),(10688,8599,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(10689,8599,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(10690,8599,'_elementor_page_assets','a:0:{}'),(10695,26,'_elementor_page_assets','a:0:{}'),(10705,8602,'_elementor_edit_mode','builder'),(10706,8602,'_elementor_template_type','wp-page'),(10707,8602,'_elementor_version','3.5.3'),(10708,8602,'_wp_page_template','default'),(10709,8602,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10710,8602,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10711,8602,'_elementor_page_assets','a:0:{}'),(10713,8603,'_elementor_edit_mode','builder'),(10714,8603,'_elementor_template_type','wp-page'),(10715,8603,'_elementor_version','3.5.3'),(10716,8603,'_wp_page_template','default'),(10717,8603,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10718,8603,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10719,8603,'_elementor_page_assets','a:0:{}'),(10721,8604,'_elementor_edit_mode','builder'),(10722,8604,'_elementor_template_type','wp-page'),(10723,8604,'_elementor_version','3.5.3'),(10724,8604,'_wp_page_template','default'),(10725,8604,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10726,8604,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10727,8604,'_elementor_page_assets','a:0:{}'),(10729,8605,'_elementor_edit_mode','builder'),(10730,8605,'_elementor_template_type','wp-page'),(10731,8605,'_elementor_version','3.5.3'),(10732,8605,'_wp_page_template','default'),(10733,8605,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10734,8605,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10735,8605,'_elementor_page_assets','a:0:{}'),(10736,8606,'_elementor_edit_mode','builder'),(10737,8606,'_elementor_template_type','wp-page'),(10738,8606,'_elementor_version','3.5.3'),(10739,8606,'_wp_page_template','default'),(10740,8606,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10741,8606,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10742,8606,'_elementor_page_assets','a:0:{}'),(10743,8607,'_elementor_edit_mode','builder'),(10744,8607,'_elementor_template_type','wp-page'),(10745,8607,'_elementor_version','3.5.3'),(10746,8607,'_wp_page_template','default'),(10747,8607,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10748,8607,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10749,8607,'_elementor_page_assets','a:0:{}'),(10750,8608,'_elementor_edit_mode','builder'),(10751,8608,'_elementor_template_type','wp-page'),(10752,8608,'_elementor_version','3.5.3'),(10753,8608,'_wp_page_template','default'),(10754,8608,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10755,8608,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10756,8608,'_elementor_page_assets','a:0:{}'),(10757,8609,'_elementor_edit_mode','builder'),(10758,8609,'_elementor_template_type','wp-page'),(10759,8609,'_elementor_version','3.5.3'),(10760,8609,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (10761,8609,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10762,8609,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10763,8609,'_elementor_page_assets','a:0:{}'),(10764,8610,'_elementor_edit_mode','builder'),(10765,8610,'_elementor_template_type','wp-page'),(10766,8610,'_elementor_version','3.5.3'),(10767,8610,'_wp_page_template','default'),(10768,8610,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10769,8610,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10770,8610,'_elementor_page_assets','a:0:{}'),(10771,5003,'_cf7mls_back_bg_color',''),(10772,5003,'_cf7mls_back_text_color',''),(10773,5003,'_cf7mls_next_bg_color',''),(10774,5003,'_cf7mls_next_text_color',''),(10775,5003,'_cf7mls_db_save_every_step','no'),(10776,5003,'_cf7mls_step_name','s:17:\"a:1:{i:0;s:0:\"\";}\";'),(10777,5003,'_cf7mls_progress_bar_style','navigation_horizontal_squaren'),(10778,5003,'_cf7_mls_enable_progress_bar','0'),(10779,5003,'_cf7mls_progress_bar_bg_color','#0073aa'),(10780,5003,'_cf7_mls_auto_scroll_animation',''),(10781,5003,'_cf7_mls_auto_moving_animation',''),(10782,5003,'_cf7mls_select_stype_transition','in_fadeIn next_fadeInRight back_fadeInLeft'),(10783,5003,'_cf7mls_style_text','vertical'),(10784,5003,'_cf7_mls_enable_progress_bar_percent','0'),(10785,5003,'_cf7mls_progress_bar_percent_color','#0073aa'),(10786,5003,'_cf7mls_allow_choose_step','off'),(10787,5003,'_cf7mls_back_button_title',''),(10790,8611,'_elementor_edit_mode','builder'),(10791,8611,'_elementor_template_type','wp-page'),(10792,8611,'_elementor_version','3.5.3'),(10793,8611,'_wp_page_template','default'),(10794,8611,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10795,8611,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10796,8611,'_elementor_page_assets','a:0:{}'),(10798,8612,'_elementor_edit_mode','builder'),(10799,8612,'_elementor_template_type','wp-page'),(10800,8612,'_elementor_version','3.5.3'),(10801,8612,'_wp_page_template','default'),(10802,8612,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10803,8612,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10804,8612,'_elementor_page_assets','a:0:{}'),(10806,8613,'_elementor_edit_mode','builder'),(10807,8613,'_elementor_template_type','wp-page'),(10808,8613,'_elementor_version','3.5.3'),(10809,8613,'_wp_page_template','default'),(10810,8613,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10811,8613,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(10812,8613,'_elementor_page_assets','a:0:{}'),(10815,26,'_edit_lock','1645700891:1'),(10865,1214,'_elementor_page_assets','a:0:{}'),(10880,8615,'_wp_page_template','default'),(10881,8615,'_elementor_edit_mode','builder'),(10882,8615,'_elementor_template_type','wp-page'),(10883,8615,'_elementor_version','3.1.1'),(10884,8615,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10885,8615,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10886,8615,'_elementor_page_assets','a:0:{}'),(10888,8616,'_wp_page_template','default'),(10889,8616,'_elementor_edit_mode','builder'),(10890,8616,'_elementor_template_type','wp-page'),(10891,8616,'_elementor_version','3.1.1'),(10892,8616,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10893,8616,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10894,8616,'_elementor_page_assets','a:0:{}'),(10896,8617,'_wp_page_template','default'),(10897,8617,'_elementor_edit_mode','builder'),(10898,8617,'_elementor_template_type','wp-page'),(10899,8617,'_elementor_version','3.1.1'),(10900,8617,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10901,8617,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10902,8617,'_elementor_page_assets','a:0:{}'),(10915,8619,'_wp_page_template','default'),(10916,8619,'_elementor_edit_mode','builder'),(10917,8619,'_elementor_template_type','wp-page'),(10918,8619,'_elementor_version','3.5.3'),(10919,8619,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10920,8619,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10921,8619,'_elementor_page_assets','a:0:{}'),(10923,8620,'_wp_page_template','default'),(10924,8620,'_elementor_edit_mode','builder'),(10925,8620,'_elementor_template_type','wp-page'),(10926,8620,'_elementor_version','3.5.3'),(10927,8620,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\",\"item_color\":[]},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10928,8620,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10929,8620,'_elementor_page_assets','a:0:{}'),(10931,8621,'_wp_page_template','default'),(10932,8621,'_elementor_edit_mode','builder'),(10933,8621,'_elementor_template_type','wp-page'),(10934,8621,'_elementor_version','3.5.3'),(10935,8621,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10936,8621,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10937,8621,'_elementor_page_assets','a:0:{}'),(10957,8623,'_wp_page_template','default'),(10958,8623,'_elementor_edit_mode','builder'),(10959,8623,'_elementor_template_type','wp-page'),(10960,8623,'_elementor_version','3.5.3'),(10961,8623,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10962,8623,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10963,8623,'_elementor_page_assets','a:0:{}'),(10965,8624,'_wp_page_template','default'),(10966,8624,'_elementor_edit_mode','builder'),(10967,8624,'_elementor_template_type','wp-page'),(10968,8624,'_elementor_version','3.5.3'),(10969,8624,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\"},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\"},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\"},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\"},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\"},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\"},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\"},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\"},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\"},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\"},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\"}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10970,8624,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10971,8624,'_elementor_page_assets','a:0:{}'),(10973,8625,'_wp_page_template','default'),(10974,8625,'_elementor_edit_mode','builder'),(10975,8625,'_elementor_template_type','wp-page'),(10976,8625,'_elementor_version','3.5.3'),(10977,8625,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false},{\"id\":\"9669960\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d9302b1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(10978,8625,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(10979,8625,'_elementor_page_assets','a:0:{}'),(10995,8627,'_wp_page_template','default'),(10996,8627,'_elementor_edit_mode','builder'),(10997,8627,'_elementor_template_type','wp-page'),(10998,8627,'_elementor_version','3.5.3'),(10999,8627,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false},{\"id\":\"9669960\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d9302b1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11000,8627,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11001,8627,'_elementor_page_assets','a:0:{}'),(11003,8628,'_wp_page_template','default'),(11004,8628,'_elementor_edit_mode','builder'),(11005,8628,'_elementor_template_type','wp-page'),(11006,8628,'_elementor_version','3.5.3'),(11007,8628,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false},{\"id\":\"9669960\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d9302b1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11008,8628,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11009,8628,'_elementor_page_assets','a:0:{}'),(11011,8629,'_wp_page_template','default'),(11012,8629,'_elementor_edit_mode','builder'),(11013,8629,'_elementor_template_type','wp-page'),(11014,8629,'_elementor_version','3.5.3'),(11015,8629,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11016,8629,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11017,8629,'_elementor_page_assets','a:0:{}'),(11020,8630,'_wp_page_template','default'),(11021,8630,'_elementor_edit_mode','builder'),(11022,8630,'_elementor_template_type','wp-page'),(11023,8630,'_elementor_version','3.5.3'),(11024,8630,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11025,8630,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11026,8630,'_elementor_page_assets','a:0:{}'),(11028,8631,'_wp_page_template','default'),(11029,8631,'_elementor_edit_mode','builder'),(11030,8631,'_elementor_template_type','wp-page'),(11031,8631,'_elementor_version','3.5.3'),(11032,8631,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11033,8631,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11034,8631,'_elementor_page_assets','a:0:{}'),(11036,8632,'_wp_page_template','default'),(11037,8632,'_elementor_edit_mode','builder'),(11038,8632,'_elementor_template_type','wp-page'),(11039,8632,'_elementor_version','3.5.3'),(11040,8632,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11041,8632,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11042,8632,'_elementor_page_assets','a:0:{}'),(11045,8633,'_wp_page_template','default'),(11046,8633,'_elementor_edit_mode','builder'),(11047,8633,'_elementor_template_type','wp-page'),(11048,8633,'_elementor_version','3.5.3'),(11049,8633,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11050,8633,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11051,8633,'_elementor_page_assets','a:0:{}'),(11053,8634,'_wp_page_template','default'),(11054,8634,'_elementor_edit_mode','builder'),(11055,8634,'_elementor_template_type','wp-page'),(11056,8634,'_elementor_version','3.5.3'),(11057,8634,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11058,8634,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11059,8634,'_elementor_page_assets','a:0:{}'),(11061,8635,'_wp_page_template','default'),(11062,8635,'_elementor_edit_mode','builder'),(11063,8635,'_elementor_template_type','wp-page'),(11064,8635,'_elementor_version','3.5.3'),(11065,8635,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11066,8635,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11067,8635,'_elementor_page_assets','a:0:{}'),(11070,8636,'_menu_item_type','post_type'),(11071,8636,'_menu_item_menu_item_parent','0'),(11072,8636,'_menu_item_object_id','26'),(11073,8636,'_menu_item_object','page'),(11074,8636,'_menu_item_target',''),(11075,8636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11076,8636,'_menu_item_xfn',''),(11077,8636,'_menu_item_url',''),(11079,8636,'_menu_item_ct_megaprofile','0'),(11080,8636,'_menu_item_ct_icon',''),(11081,8636,'_menu_item_ct_onepage','no-one-page'),(11082,8636,'_menu_item_ct_onepage_offset',''),(11083,8636,'_menu_item_ct_custom_class',''),(11084,8636,'_menu_item_ct_menu_marker',''),(11086,123,'_elementor_page_assets','a:0:{}'),(11087,8379,'_edit_lock','1642592163:1'),(11089,8379,'external_url','https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8'),(11090,8379,'video_url',''),(11091,8379,'custom_header','0'),(11092,8379,'header_layout','24'),(11093,8379,'custom_pagetitle','show'),(11094,8379,'ptitle_bg','a:2:{s:16:\"background-image\";s:82:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"8638\";s:6:\"height\";s:3:\"628\";s:5:\"width\";s:4:\"1200\";s:9:\"thumbnail\";s:90:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-150x150.png\";}}'),(11095,8379,'_elementor_edit_mode','builder'),(11096,8379,'_elementor_template_type','wp-post'),(11097,8379,'_elementor_version','3.5.3'),(11104,8638,'_wp_attached_file','2019/11/info-april.png'),(11105,8638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:22:\"2019/11/info-april.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"info-april-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"info-april-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"info-april-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:\"info-april-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"info-april-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"info-april-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(11108,8639,'_wp_page_template','default'),(11109,8639,'_elementor_controls_usage','a:0:{}'),(11110,8639,'_thumbnail_id','8638'),(11111,8639,'_elementor_edit_mode','builder'),(11112,8639,'_elementor_template_type','wp-post'),(11113,8639,'_elementor_version','3.5.3'),(11114,8640,'_wp_page_template','default'),(11115,8640,'_elementor_controls_usage','a:0:{}'),(11116,8640,'_thumbnail_id','8638'),(11117,8640,'_elementor_edit_mode','builder'),(11118,8640,'_elementor_template_type','wp-post'),(11119,8640,'_elementor_version','3.5.3'),(11120,8379,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span class=\\\"main-title-style\\\"><a href=\\\"https:\\/\\/ealoorconsultancy.co.uk\\/news-events\\/gloucester-hospitals-nhs-foundations-trust-direct-interview\\/\\\">Gloucester Hospitals NHS Foundations Trust \\u2013 Direct Interview<\\/a><\\/span><\\/p>\\n<p><\\/p>\\n<h2>Benefits of Package<\\/h2>\\n<ul><li>Starting Salary \\u00a324,214 per annum<\\/li>\\n<li>One way flight to the UK<\\/li>\\n<li>One month Free Accommodation<\\/li>\\n<li>Free Certificate Of Sponsorship<\\/li>\\n<li>Free 1 x OSCE exam cost<\\/li>\\n<li>Refund the Medical Exams \\/ TB Screening<\\/li>\\n<li>Refund Visa Application<\\/li>\\n<li>Refund the Immigration Health Surcharge<\\/li>\\n<li>Refund the CBT exam cost<\\/li>\\n<li>Refund of NMC Application Fee<\\/li><\\/ul>\\n<h3>Who Can Apply?<\\/h3>\\n<ul>\\n<li>Theatre and Surgery Nurses with NMC Decision letter.<\\/li>\\n<li>Theatre and Surgery Nurses: New assessment completed candidates.<\\/li>\\n<li>Candidates ready to travel on April 2020<\\/li>\\n<li>Immediate COS for interview successful candidates.<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11121,8641,'_wp_page_template','default'),(11122,8641,'_elementor_controls_usage','a:0:{}'),(11123,8641,'_thumbnail_id','8638'),(11124,8641,'_elementor_edit_mode','builder'),(11125,8641,'_elementor_template_type','wp-post'),(11126,8641,'_elementor_version','3.5.3'),(11127,8641,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"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 The man, who is in a stable condition in hospital, has \\\"potentially life-changing injuries\\\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\\\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\\n\\n\\\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\\\"\\n<h3 class=\\\"single-title\\\">Content without backward-compatible data.<\\/h3>\\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\\n\\n\\\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\\\"\\n\\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing<\\/u> public attitudes to paramilitary attacks.\\n\\n[gallery size=\\\"constrio-medium\\\" columns=\\\"2\\\" link=\\\"file\\\" ids=\\\"149,184\\\"]\\n<h3 class=\\\"single-title\\\">A Kentucky woman who was accused last year.<\\/h3>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote.\\n<blockquote>\\u201cWhat sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.\\u201d<cite>Neil Borton<\\/cite><\\/blockquote>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11128,8379,'_elementor_page_assets','a:0:{}'),(11131,8642,'_wp_page_template','default'),(11132,8642,'_elementor_controls_usage','a:0:{}'),(11133,8642,'_thumbnail_id','8638'),(11134,8642,'_elementor_edit_mode','builder'),(11135,8642,'_elementor_template_type','wp-post'),(11136,8642,'_elementor_version','3.5.3'),(11137,8642,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"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 The man, who is in a stable condition in hospital, has \\\"potentially life-changing injuries\\\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\\\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\\n\\n\\\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\\\"\\n<h3 class=\\\"single-title\\\">Content without backward-compatible data.<\\/h3>\\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\\n\\n\\\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\\\"\\n\\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing<\\/u> public attitudes to paramilitary attacks.\\n\\n[gallery size=\\\"constrio-medium\\\" columns=\\\"2\\\" link=\\\"file\\\" ids=\\\"149,184\\\"]\\n<h3 class=\\\"single-title\\\">A Kentucky woman who was accused last year.<\\/h3>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote.\\n<blockquote>\\u201cWhat sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.\\u201d<cite>Neil Borton<\\/cite><\\/blockquote>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11138,8642,'_elementor_page_assets','a:0:{}'),(11140,8643,'_wp_page_template','default'),(11141,8643,'_elementor_controls_usage','a:0:{}'),(11142,8643,'_thumbnail_id','8638'),(11143,8643,'_elementor_edit_mode','builder'),(11144,8643,'_elementor_template_type','wp-post'),(11145,8643,'_elementor_version','3.5.3'),(11146,8643,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"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 The man, who is in a stable condition in hospital, has \\\"potentially life-changing injuries\\\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\\\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\\n\\n\\\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\\\"\\n<h3 class=\\\"single-title\\\">Content without backward-compatible data.<\\/h3>\\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\\n\\n\\\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\\\"\\n\\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing<\\/u> public attitudes to paramilitary attacks.\\n\\n[gallery size=\\\"constrio-medium\\\" columns=\\\"2\\\" link=\\\"file\\\" ids=\\\"149,184\\\"]\\n<h3 class=\\\"single-title\\\">A Kentucky woman who was accused last year.<\\/h3>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote.\\n<blockquote>\\u201cWhat sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.\\u201d<cite>Neil Borton<\\/cite><\\/blockquote>\\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\\n\\n\\\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\\\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11147,8643,'_elementor_page_assets','a:0:{}'),(11149,8644,'_wp_page_template','default'),(11150,8644,'_elementor_controls_usage','a:0:{}'),(11151,8644,'_thumbnail_id','8638'),(11152,8644,'_elementor_edit_mode','builder'),(11153,8644,'_elementor_template_type','wp-post'),(11154,8644,'_elementor_version','3.5.3'),(11155,8644,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span class=\\\"main-title-style\\\"><a href=\\\"https:\\/\\/ealoorconsultancy.co.uk\\/news-events\\/gloucester-hospitals-nhs-foundations-trust-direct-interview\\/\\\">Gloucester Hospitals NHS Foundations Trust \\u2013 Direct Interview<\\/a><\\/span><\\/p>\\n<p><\\/p>\\n<h2>Benefits of Package<\\/h2>\\n<ul><li>Starting Salary \\u00a324,214 per annum<\\/li>\\n<li>One way flight to the UK<\\/li>\\n<li>One month Free Accommodation<\\/li>\\n<li>Free Certificate Of Sponsorship<\\/li>\\n<li>Free 1 x OSCE exam cost<\\/li>\\n<li>Refund the Medical Exams \\/ TB Screening<\\/li>\\n<li>Refund Visa Application<\\/li>\\n<li>Refund the Immigration Health Surcharge<\\/li>\\n<li>Refund the CBT exam cost<\\/li>\\n<li>Refund of NMC Application Fee<\\/li><\\/ul>\\n<h3>Who Can Apply?<\\/h3>\\n<ul>\\n<li>Theatre and Surgery Nurses with NMC Decision letter.<\\/li>\\n<li>Theatre and Surgery Nurses: New assessment completed candidates.<\\/li>\\n<li>Candidates ready to travel on April 2020<\\/li>\\n<li>Immediate COS for interview successful candidates.<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11156,8644,'_elementor_page_assets','a:0:{}'),(11164,8647,'_wp_page_template','default'),(11165,8647,'_elementor_controls_usage','a:0:{}'),(11166,8647,'_thumbnail_id','8638'),(11167,8647,'_elementor_edit_mode','builder'),(11168,8647,'_elementor_template_type','wp-post'),(11169,8647,'_elementor_version','3.5.3'),(11170,8647,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span class=\\\"main-title-style\\\"><a href=\\\"https:\\/\\/ealoorconsultancy.co.uk\\/news-events\\/gloucester-hospitals-nhs-foundations-trust-direct-interview\\/\\\">Gloucester Hospitals NHS Foundations Trust \\u2013 Direct Interview<\\/a><\\/span><\\/p>\\n<p><\\/p>\\n<h2>Benefits of Package<\\/h2>\\n<ul><li>Starting Salary \\u00a324,214 per annum<\\/li>\\n<li>One way flight to the UK<\\/li>\\n<li>One month Free Accommodation<\\/li>\\n<li>Free Certificate Of Sponsorship<\\/li>\\n<li>Free 1 x OSCE exam cost<\\/li>\\n<li>Refund the Medical Exams \\/ TB Screening<\\/li>\\n<li>Refund Visa Application<\\/li>\\n<li>Refund the Immigration Health Surcharge<\\/li>\\n<li>Refund the CBT exam cost<\\/li>\\n<li>Refund of NMC Application Fee<\\/li><\\/ul>\\n<h3>Who Can Apply?<\\/h3>\\n<ul>\\n<li>Theatre and Surgery Nurses with NMC Decision letter.<\\/li>\\n<li>Theatre and Surgery Nurses: New assessment completed candidates.<\\/li>\\n<li>Candidates ready to travel on April 2020<\\/li>\\n<li>Immediate COS for interview successful candidates.<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(11171,8647,'_elementor_page_assets','a:0:{}'),(11175,8648,'_wp_page_template','default'),(11176,8648,'_elementor_edit_mode','builder'),(11177,8648,'_elementor_template_type','wp-page'),(11178,8648,'_elementor_version','3.5.3'),(11179,8648,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11180,8648,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11181,8648,'_elementor_page_assets','a:0:{}'),(11183,8649,'_wp_page_template','default'),(11184,8649,'_elementor_edit_mode','builder'),(11185,8649,'_elementor_template_type','wp-page'),(11186,8649,'_elementor_version','3.5.3'),(11187,8649,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11188,8649,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11189,8649,'_elementor_page_assets','a:0:{}'),(11191,8650,'_wp_page_template','default'),(11192,8650,'_elementor_edit_mode','builder'),(11193,8650,'_elementor_template_type','wp-page'),(11194,8650,'_elementor_version','3.5.3'),(11195,8650,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11196,8650,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11197,8650,'_elementor_page_assets','a:0:{}'),(11200,8651,'_wp_page_template','default'),(11201,8651,'_elementor_edit_mode','builder'),(11202,8651,'_elementor_template_type','wp-page'),(11203,8651,'_elementor_version','3.5.3'),(11204,8651,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11205,8651,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11206,8651,'_elementor_page_assets','a:0:{}'),(11208,26,'header_type','themeoption'),(11209,26,'e_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(11210,26,'get_revslide',''),(11211,26,'hidden_logo','themeoption'),(11212,26,'ptitle_display','show'),(11213,26,'p_primary_color',''),(11214,26,'p_secondary_color',''),(11215,26,'p_third_color',''),(11216,8652,'_wp_page_template','default'),(11217,8652,'_elementor_edit_mode','builder'),(11218,8652,'_elementor_template_type','wp-post'),(11219,8652,'_elementor_version','3.5.3'),(11220,8652,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"},{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8524,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\"},{\"id\":8523,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\"},{\"id\":7781,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/11\\/u-blog-02.jpg\"},{\"id\":7525,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\"},{\"id\":7500,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/12\\/h-case1.jpg\"},{\"id\":7416,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\"},{\"id\":7135,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider3.jpg\"},{\"id\":7267,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\"},{\"id\":7099,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider1.jpg\"},{\"id\":7134,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider2.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(11221,8652,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(11222,8652,'_elementor_page_assets','a:0:{}'),(11232,3514,'_elementor_page_assets','a:0:{}'),(11233,3514,'_edit_lock','1642999766:1'),(11234,8653,'_wp_page_template','default'),(11235,8653,'_elementor_edit_mode','builder'),(11236,8653,'_elementor_template_type','wp-page'),(11237,8653,'_elementor_version','3.0.9'),(11238,8653,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"Our office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount of\\nPleasant, SC, 29466, Australia.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@company.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11239,8653,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11241,8653,'_elementor_page_assets','a:0:{}'),(11242,8654,'_wp_page_template','default'),(11243,8654,'_elementor_edit_mode','builder'),(11244,8654,'_elementor_template_type','wp-page'),(11245,8654,'_elementor_version','3.0.9'),(11246,8654,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"Our office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount of\\nPleasant, SC, 29466, Australia.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@company.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11247,8654,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11249,8654,'_elementor_page_assets','a:0:{}'),(11250,8655,'_wp_page_template','default'),(11251,8655,'_elementor_edit_mode','builder'),(11252,8655,'_elementor_template_type','wp-page'),(11253,8655,'_elementor_version','3.0.9'),(11254,8655,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11255,8655,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11257,8655,'_elementor_page_assets','a:0:{}'),(11259,8656,'_wp_page_template','default'),(11260,8656,'_elementor_edit_mode','builder'),(11261,8656,'_elementor_template_type','wp-page'),(11262,8656,'_elementor_version','3.5.3'),(11263,8656,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11264,8656,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11265,8656,'_elementor_page_assets','a:0:{}'),(11267,8657,'_wp_page_template','default'),(11268,8657,'_elementor_edit_mode','builder'),(11269,8657,'_elementor_template_type','wp-page'),(11270,8657,'_elementor_version','3.5.3'),(11271,8657,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11272,8657,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11273,8657,'_elementor_page_assets','a:0:{}'),(11275,8658,'_wp_page_template','default'),(11276,8658,'_elementor_edit_mode','builder'),(11277,8658,'_elementor_template_type','wp-page'),(11278,8658,'_elementor_version','3.5.3'),(11279,8658,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11280,8658,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11281,8658,'_elementor_page_assets','a:0:{}'),(11302,8660,'_wp_page_template','default'),(11303,8660,'_elementor_edit_mode','builder'),(11304,8660,'_elementor_template_type','wp-page'),(11305,8660,'_elementor_version','3.5.3'),(11306,8660,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11307,8660,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11308,8660,'_elementor_page_assets','a:0:{}'),(11310,8661,'_wp_page_template','default'),(11311,8661,'_elementor_edit_mode','builder'),(11312,8661,'_elementor_template_type','wp-page'),(11313,8661,'_elementor_version','3.5.3'),(11314,8661,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"+44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h5\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel No: 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11315,8661,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11316,8661,'_elementor_page_assets','a:0:{}'),(11318,8662,'_wp_page_template','default'),(11319,8662,'_elementor_edit_mode','builder'),(11320,8662,'_elementor_template_type','wp-page'),(11321,8662,'_elementor_version','3.5.3'),(11322,8662,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11323,8662,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11324,8662,'_elementor_page_assets','a:0:{}'),(11327,8663,'_wp_page_template','default'),(11328,8663,'_elementor_edit_mode','builder'),(11329,8663,'_elementor_template_type','wp-page'),(11330,8663,'_elementor_version','3.5.3'),(11331,8663,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11332,8663,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11333,8663,'_elementor_page_assets','a:0:{}'),(11335,8664,'_wp_page_template','default'),(11336,8664,'_elementor_edit_mode','builder'),(11337,8664,'_elementor_template_type','wp-page'),(11338,8664,'_elementor_version','3.5.3');
INSERT INTO `wp_postmeta` VALUES (11339,8664,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11340,8664,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11341,8664,'_elementor_page_assets','a:0:{}'),(11343,8665,'_wp_page_template','default'),(11344,8665,'_elementor_edit_mode','builder'),(11345,8665,'_elementor_template_type','wp-page'),(11346,8665,'_elementor_version','3.5.3'),(11347,8665,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11348,8665,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11349,8665,'_elementor_page_assets','a:0:{}'),(11370,8667,'_wp_page_template','default'),(11371,8667,'_elementor_edit_mode','builder'),(11372,8667,'_elementor_template_type','wp-page'),(11373,8667,'_elementor_version','3.5.3'),(11374,8667,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11375,8667,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11376,8667,'_elementor_page_assets','a:0:{}'),(11378,8668,'_wp_page_template','default'),(11379,8668,'_elementor_edit_mode','builder'),(11380,8668,'_elementor_template_type','wp-page'),(11381,8668,'_elementor_version','3.5.3'),(11382,8668,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11383,8668,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11384,8668,'_elementor_page_assets','a:0:{}'),(11386,8669,'_wp_page_template','default'),(11387,8669,'_elementor_edit_mode','builder'),(11388,8669,'_elementor_template_type','wp-page'),(11389,8669,'_elementor_version','3.5.3'),(11390,8669,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11391,8669,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11392,8669,'_elementor_page_assets','a:0:{}'),(11403,8671,'_wp_page_template','default'),(11404,8671,'_elementor_edit_mode','builder'),(11405,8671,'_elementor_template_type','wp-page'),(11406,8671,'_elementor_version','3.5.3'),(11407,8671,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11408,8671,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(11409,8671,'_elementor_page_assets','a:0:{}'),(11411,3514,'header_type','layout'),(11412,3514,'e_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(11413,3514,'get_revslide',''),(11414,3514,'hidden_logo','themeoption'),(11415,3514,'p_h_style1','themeoption'),(11416,3514,'h_custom_menu',''),(11417,3514,'h_custom_menu_left',''),(11418,3514,'h_custom_menu_right',''),(11419,3514,'ptitle_display','show'),(11420,3514,'ptitle_breadcrumb_page','themeoption'),(11421,3514,'ptitle_breadcrumb_color',''),(11422,3514,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(11423,3514,'p_primary_color',''),(11424,3514,'p_secondary_color',''),(11425,3514,'p_third_color',''),(11426,8672,'_menu_item_type','post_type'),(11427,8672,'_menu_item_menu_item_parent','0'),(11428,8672,'_menu_item_object_id','3514'),(11429,8672,'_menu_item_object','page'),(11430,8672,'_menu_item_target',''),(11431,8672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(11432,8672,'_menu_item_xfn',''),(11433,8672,'_menu_item_url',''),(11435,8512,'_wp_old_date','2022-01-18'),(11436,8636,'_wp_old_date','2022-01-18'),(11437,8514,'_wp_old_date','2022-01-18'),(11438,8515,'_wp_old_date','2022-01-18'),(11439,8516,'_wp_old_date','2022-01-18'),(11440,8672,'_menu_item_ct_megaprofile','0'),(11441,8672,'_menu_item_ct_icon',''),(11442,8672,'_menu_item_ct_onepage','no-one-page'),(11443,8672,'_menu_item_ct_onepage_offset',''),(11444,8672,'_menu_item_ct_custom_class',''),(11445,8672,'_menu_item_ct_menu_marker',''),(11461,8360,'_edit_lock','1642576744:1'),(11462,8677,'_edit_last','1'),(11463,8677,'_edit_lock','1643895994:1'),(11465,8677,'_thumbnail_id','8885'),(11466,8677,'_wp_page_template','default'),(11467,8677,'case_logo','a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\";s:2:\"id\";s:4:\"8518\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:3:\"168\";s:9:\"thumbnail\";s:86:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11-150x87.png\";}'),(11468,8677,'case_logo_link','https://comparestudyabroad.co.uk/'),(11469,8677,'case_study_except','In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.'),(11470,8677,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(11471,8679,'_edit_last','1'),(11472,8679,'_edit_lock','1645700663:1'),(11473,8680,'_wp_attached_file','2022/01/logo-12.png'),(11474,8680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:111;s:4:\"file\";s:19:\"2022/01/logo-12.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo-12-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"logo-12-150x111.png\";s:5:\"width\";i:150;s:6:\"height\";i:111;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:{}}}'),(11475,8679,'_wp_page_template','default'),(11476,8679,'case_logo','a:5:{s:3:\"url\";s:79:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\";s:2:\"id\";s:4:\"8680\";s:6:\"height\";s:3:\"111\";s:5:\"width\";s:3:\"388\";s:9:\"thumbnail\";s:87:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12-150x111.png\";}'),(11477,8679,'case_logo_link','https://www.nursingjobsuk.co.uk/'),(11478,8679,'case_study_except','Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.'),(11479,8679,'case_study_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(11480,8682,'_elementor_edit_mode','builder'),(11481,8682,'_elementor_template_type','wp-page'),(11482,8682,'_elementor_version','3.5.3'),(11483,8682,'_wp_page_template','default'),(11484,8682,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11485,8682,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11486,8682,'_elementor_page_assets','a:0:{}'),(11488,8683,'_elementor_edit_mode','builder'),(11489,8683,'_elementor_template_type','wp-page'),(11490,8683,'_elementor_version','3.5.3'),(11491,8683,'_wp_page_template','default'),(11492,8683,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11493,8683,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11494,8683,'_elementor_page_assets','a:0:{}'),(11496,8684,'_elementor_edit_mode','builder'),(11497,8684,'_elementor_template_type','wp-page'),(11498,8684,'_elementor_version','3.5.3'),(11499,8684,'_wp_page_template','default'),(11500,8684,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11501,8684,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11502,8684,'_elementor_page_assets','a:0:{}'),(11504,8687,'_elementor_edit_mode','builder'),(11505,8687,'_elementor_template_type','wp-page'),(11506,8687,'_elementor_version','3.5.3'),(11507,8687,'_wp_page_template','default'),(11508,8687,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11509,8687,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11510,8687,'_elementor_page_assets','a:0:{}'),(11511,8688,'_elementor_edit_mode','builder'),(11512,8688,'_elementor_template_type','wp-page'),(11513,8688,'_elementor_version','3.5.3'),(11514,8688,'_wp_page_template','default'),(11515,8688,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11516,8688,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11517,8688,'_elementor_page_assets','a:0:{}'),(11518,8689,'_elementor_edit_mode','builder'),(11519,8689,'_elementor_template_type','wp-page'),(11520,8689,'_elementor_version','3.5.3'),(11521,8689,'_wp_page_template','default'),(11522,8689,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11523,8689,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11524,8689,'_elementor_page_assets','a:0:{}'),(11526,8690,'_elementor_edit_mode','builder'),(11527,8690,'_elementor_template_type','wp-page'),(11528,8690,'_elementor_version','3.5.3'),(11529,8690,'_wp_page_template','default'),(11530,8690,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11531,8690,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11532,8690,'_elementor_page_assets','a:0:{}'),(11534,8691,'_elementor_edit_mode','builder'),(11535,8691,'_elementor_template_type','wp-page'),(11536,8691,'_elementor_version','3.5.3'),(11537,8691,'_wp_page_template','default'),(11538,8691,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11539,8691,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11540,8691,'_elementor_page_assets','a:0:{}'),(11542,8692,'_elementor_edit_mode','builder'),(11543,8692,'_elementor_template_type','wp-page'),(11544,8692,'_elementor_version','3.5.3'),(11545,8692,'_wp_page_template','default'),(11546,8692,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11547,8692,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11548,8692,'_elementor_page_assets','a:0:{}'),(11558,8679,'_thumbnail_id','8886'),(11559,8694,'_elementor_edit_mode','builder'),(11560,8694,'_elementor_template_type','wp-page'),(11561,8694,'_elementor_version','3.5.3'),(11562,8694,'_wp_page_template','default'),(11563,8694,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11564,8694,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11565,8694,'_elementor_page_assets','a:0:{}'),(11567,8695,'_elementor_edit_mode','builder'),(11568,8695,'_elementor_template_type','wp-page'),(11569,8695,'_elementor_version','3.5.3'),(11570,8695,'_wp_page_template','default'),(11571,8695,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-250\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11572,8695,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11573,8695,'_elementor_page_assets','a:0:{}'),(11575,8696,'_elementor_edit_mode','builder'),(11576,8696,'_elementor_template_type','wp-page'),(11577,8696,'_elementor_version','3.5.3'),(11578,8696,'_wp_page_template','default'),(11579,8696,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11580,8696,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11581,8696,'_elementor_page_assets','a:0:{}'),(11593,8699,'_elementor_edit_mode','builder'),(11594,8699,'_elementor_template_type','wp-page'),(11595,8699,'_elementor_version','3.5.3'),(11596,8699,'_wp_page_template','default'),(11597,8699,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11598,8699,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11599,8699,'_elementor_page_assets','a:0:{}'),(11600,8700,'_elementor_edit_mode','builder'),(11601,8700,'_elementor_template_type','wp-page'),(11602,8700,'_elementor_version','3.5.3'),(11603,8700,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (11604,8700,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11605,8700,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11606,8700,'_elementor_page_assets','a:0:{}'),(11607,8701,'_elementor_edit_mode','builder'),(11608,8701,'_elementor_template_type','wp-page'),(11609,8701,'_elementor_version','3.5.3'),(11610,8701,'_wp_page_template','default'),(11611,8701,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11612,8701,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11613,8701,'_elementor_page_assets','a:0:{}'),(11614,8702,'_elementor_edit_mode','builder'),(11615,8702,'_elementor_template_type','wp-page'),(11616,8702,'_elementor_version','3.5.3'),(11617,8702,'_wp_page_template','default'),(11618,8702,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11619,8702,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11620,8702,'_elementor_page_assets','a:0:{}'),(11621,8703,'_elementor_edit_mode','builder'),(11622,8703,'_elementor_template_type','wp-page'),(11623,8703,'_elementor_version','3.5.3'),(11624,8703,'_wp_page_template','default'),(11625,8703,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11626,8703,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11627,8703,'_elementor_page_assets','a:0:{}'),(11628,8704,'_elementor_edit_mode','builder'),(11629,8704,'_elementor_template_type','wp-page'),(11630,8704,'_elementor_version','3.5.3'),(11631,8704,'_wp_page_template','default'),(11632,8704,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11633,8704,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11634,8704,'_elementor_page_assets','a:0:{}'),(11640,2442,'_elementor_page_assets','a:0:{}'),(11650,8709,'_elementor_edit_mode','builder'),(11651,8709,'_elementor_template_type','wp-page'),(11652,8709,'_elementor_version','3.5.3'),(11653,8709,'_wp_page_template','default'),(11654,8709,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11655,8709,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11656,8709,'_elementor_page_assets','a:0:{}'),(11658,8710,'_elementor_edit_mode','builder'),(11659,8710,'_elementor_template_type','wp-page'),(11660,8710,'_elementor_version','3.5.3'),(11661,8710,'_wp_page_template','default'),(11662,8710,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11663,8710,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11664,8710,'_elementor_page_assets','a:0:{}'),(11666,8711,'_elementor_edit_mode','builder'),(11667,8711,'_elementor_template_type','wp-page'),(11668,8711,'_elementor_version','3.5.3'),(11669,8711,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (11670,8711,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11671,8711,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11672,8711,'_elementor_page_assets','a:0:{}'),(11691,8721,'_elementor_edit_mode','builder'),(11692,8721,'_elementor_template_type','wp-page'),(11693,8721,'_elementor_version','3.5.3'),(11694,8721,'_wp_page_template','default'),(11695,8721,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11696,8721,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11697,8721,'_elementor_page_assets','a:0:{}'),(11699,8722,'_elementor_edit_mode','builder'),(11700,8722,'_elementor_template_type','wp-page'),(11701,8722,'_elementor_version','3.5.3'),(11702,8722,'_wp_page_template','default'),(11703,8722,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4efcf0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ae667fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c23de89\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767c524\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"4d642381\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4df7bf3d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52f9a856\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a21769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"134506f3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\"]},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"2ba15665\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"34b8f3ec\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"165ccc49\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7c26dd6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"624ecbd3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"51acbbd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2dbfd752\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"28a7740f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"43f2d565\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"eaa678a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"432f42a0\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"521f52c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"6a0f55cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f44b5d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"253cb8cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18e13f47\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3e5ed7a3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7d054a23\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"311a8d70\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"44ac1f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"26aef0c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"736c69dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4e162628\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"584e5455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43452b95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23506be9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b84839\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"542bfb29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":53.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"68853067\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve many services to solve problems.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Awesome Services\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7956b45b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"4a7b9ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"14dc6097\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consulting|service-category\"],\"icon_item\":[],\"dots\":\"true\",\"infinite\":\"true\",\"layout\":\"13\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"num_words\":11,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d1d72c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section1-1.png\",\"id\":7257},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"5a27633b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4bc16d55\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Made to measure: Getting design leadership.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"About Our Company\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"47f30538\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic<\\/b> hit, and the restaurant chain suffered the worst quarter in its history.\",\"align\":\"left\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"17b5bf8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-space-rocket-launch\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_css_classes\":\"rm-box-shadow\",\"icon_space_right\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"style\":\"rev-btn-animate1\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"220\"},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"105c3d29\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"list\":[{\"_id\":\"e89f8bb\",\"content\":\"<b>Consultio<\\/b> is a Global Institute\"},{\"content\":\"Teams Moving in Different Directions\",\"_id\":\"d958d1a\"},{\"content\":\"Making No Progress During Meetings\",\"_id\":\"c6e7b05\"},{\"content\":\"Inefficient Communication Silos\",\"_id\":\"ffa4afd\"}],\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"260\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false},{\"id\":\"5ba2314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"73a2cfcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\",\"id\":7267},\"img_size\":\"full\",\"title\":\"15 Years Experiences\",\"desc\":\"Consultio has been optimized to give your visitors the best.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"484830e0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e5af65a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"68017cee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-130\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"css_classes\":\"ct-inner-white\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f3c11a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"12550231\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":1542,\"suffix\":\"+\",\"title\":\"Satisfied Clients\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-network\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"769e7be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"38667859\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":182,\"suffix\":\"+\",\"title\":\"Expert Team\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv7 flaticonv7-network\",\"library\":\"flaticonv7\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4c375f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6f9fef0e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":285,\"suffix\":\"+\",\"title\":\"Activate Products\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv6 flaticonv6-web\",\"library\":\"flaticonv6\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"6248043c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"css_classes\":\"col-line-counter\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"103893ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"ending_number\":28,\"suffix\":\"+\",\"title\":\"Awards Winning\",\"show_icon\":\"true\",\"counter_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"number_color\":\"#1A2428\",\"number_typography_typography\":\"custom\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#333333\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_icon_typography\":\"custom\",\"typography_icon_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"style_l2\":\"style2\",\"icon_color\":\"#007EF2\",\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a7e050d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section2.jpg\",\"id\":7304},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"174\",\"right\":\"0\",\"bottom\":\"055\",\"left\":\"0\",\"isLinked\":false},\"background_position_mobile\":\"center right\",\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"f7ebf0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"575ea357\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn more from frequently asked question\",\"title_color\":\"#1A2428\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_color_mobile\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7df4cc01\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"_id\":\"5b0e024\",\"ac_title\":\"The Simple Metric That\'s Taking Over Big Business\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\"},{\"ac_title\":\"Increase in service quality and customer satisfaction\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"b669746\"},{\"ac_title\":\"Development of optimized customer communication\",\"ac_content\":\"Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.<\\/b>\",\"_id\":\"06bbc05\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style6\",\"ct_accordion_l3\":[],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"78421936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5ac2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We make business successful!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3911aa2d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Make a free consultation with us.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"180\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"59f43d21\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"6068\",\"style_l1\":\"style15\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5354442d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55a6c7f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"620b0bd8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3b26f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"386197a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"45252ce4\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We have many partners with outstanding growth. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Partners\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4388ad27\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\'ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"35b4fcab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a973d62\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"33c05c4\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"72e5699\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"e12ce1d\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"6199088\"},{\"client_name\":\"Client 6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"1ef4237\"}],\"style\":\"style2\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1032c71b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D4EB0\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\",\"id\":7416},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"24b5dc58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61cb7adb\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are available <cite>24 x 7 x 365<\\/cite>\",\"sub_title\":\"Call us at:\",\"phone_number\":\"+3-345-368-0245\",\"btn_text\":\"or <b>Live Chat<\\/b> with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-chat-1\",\"library\":\"flaticonv7\"},\"footer_text\":\"for real time support.\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_box_info\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42ea1f18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"89\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#F9F9F9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section5.png\",\"id\":7454},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":10000,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd5f149\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6376b81b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33cab2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32a54ef5\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Some easy steps to get started!\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Steps to start\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4b2333a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ee0310f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3895f1af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5424f6f1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon1.png\",\"id\":7439},\"title_text\":\"Make a business plan\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"1\",\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"7c0f510\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5e01bc90\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon2.png\",\"id\":7440},\"title_text\":\"Contact us by message\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"-88\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6a26af51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67a3a760\",\"elType\":\"widget\",\"settings\":{\"layout\":\"19\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon3.png\",\"id\":7441},\"title_text\":\"Consult with us!\",\"description_text\":\"We value the experimentation, the reformation of the message.\",\"list\":[],\"number\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"-128\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate_t\":\"wow fadeInUp\",\"ct_animate_d\":\"wow fadeInUp\",\"ct_animate_delay_d\":\"50\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"617bf1fb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section8.jpg\",\"id\":7616},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb355c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"115a007e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d307ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"3b20744b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":55.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"161aa370\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019ve offered the best pricing for you.\",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Pricing\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3d07ad36\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"6ab331fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a808bfc\",\"elType\":\"widget\",\"settings\":{\"tab_title_monthly\":\"Monthly\",\"col_monthly\":\"3\",\"content_monthly\":[{\"_id\":\"e187d75\",\"title\":\"Basic\",\"time\":\"\\/Month\",\"price\":\"$15\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\"},{\"title\":\"Standrad\",\"time\":\"\\/Month\",\"price\":\"$45\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"feature-hiden\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"ba8e9e2\"},{\"title\":\"Premium\",\"time\":\"\\/Month\",\"price\":\"$75\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\",\\\"class_pricing\\\":\\\"\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"_id\":\"a459fdd\"}],\"content_monthly2\":[],\"content_year\":[{\"_id\":\"40b91f7\",\"title\":\"Basic\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$90\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Standrad\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$180\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ffc21dc\"},{\"title\":\"Premium\",\"desc\":\"We have worked with companies across\\nandinfrastructure providers.\",\"time\":\"\\/Annually\",\"price\":\"$320\",\"feature\":\"[{\\\"content_pricing\\\":\\\"Cost Transformation\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Experience Leadership\\\",\\\"class_pricing\\\":\\\"\\\"},{\\\"content_pricing\\\":\\\"Customer Episode Design\\\"},{\\\"content_pricing\\\":\\\"Customer Value Management\\\"}]\",\"button_text\":\"Get Started\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"97d4141\"}],\"content_year2\":[],\"layout\":\"3\",\"tab_title_year\":\"Annually\",\"col_year\":\"3\",\"pricing_note\":\"** Get a huge discount for annual package!\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_pricing_multi\"},{\"id\":\"1dfb0132\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"* all terms & conditions are applied\",\"align\":\"center\",\"text_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18e4b92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#001352DB\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section9.png\",\"id\":7683},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"143\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b179a29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72b8047c\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"_id\":\"f5f82e1\",\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-icon-arrow1.png\",\"id\":7739},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"%\",\"size\":46,\"sizes\":[]},\"left_positioon\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"ct_animate\":\"wow fadeInRight\",\"ct_animate_delay\":\"100\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"5fb48c8c\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"Have a great opportunity to do <cite>consulting<\\/cite> anytime!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ct_animate\":\"case-fade-in-up\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b0100dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"z_index\":99},\"elements\":[{\"id\":\"7501a7cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2c5cfb26\",\"elType\":\"widget\",\"settings\":{\"text\":\"Google Play\",\"align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-google-play\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#02010100\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_color\":\"#007EF1\",\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#FFFFFF\",\"btn_bg_color_hover\":\"#007EF1\",\"ct_animate\":\"wow fadeInLeft\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true},{\"id\":\"20d313ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f082dfb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Play Store\",\"align\":\"left\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"28\",\"bottom\":\"0\",\"left\":\"28\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"btn_icon\":{\"value\":\"flaticonv7 flaticonv7-app-store\",\"library\":\"flaticonv7\"},\"icon_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"btn_bg_color\":\"#007EF1\",\"icon_space_right\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_display\":\"icon-flex\",\"btn_display\":\"btn--flex\",\"border_type\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#007EF1\",\"icon_color_hover\":\"#007EF1\",\"btn_bg_color_hover\":\"#007EF100\",\"ct_animate\":\"wow fadeInRight\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da76aab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"226b442d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5acb82b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-phone.png\",\"id\":7746},\"image_align\":\"center\",\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-210\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26bcebce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-110\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"652189d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"55728c18\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5e2f6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"4cf92af9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2c660a27\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share story & more news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"319a37b9\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"53e6d57d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"110e5f6\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55859cef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"74111922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e257dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-newsletter.jpg\",\"id\":7782},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"88\",\"right\":\"0\",\"bottom\":\"92\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"82\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad8d354\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"_inline_size_tablet\":30,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"788b2dab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-logo.png\",\"id\":7786},\"image_align\":\"right\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_align_tablet\":\"center\",\"image_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"abacf12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47cdb638\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Stay ahead in a rapidly changing world. <cite>Subscribe<\\/cite> to our Insights.\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Roboto\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2c4542e9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"1e927297\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"*I have read the Privacy Policy and agree to its terms.\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593d7041\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3645f36f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"226b2c36\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18eed585\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"83\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"58792952\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"662be472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cb95e02\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"143e807\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6030aa4d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3edf7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"85\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fd0dc61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b6f29a\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"sub_title\":\"Newsletter\",\"title\":\"Subscribe to newsletter for getting update\",\"desc\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\",\"email_label\":\"Enter mail address...\",\"image_bg_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"image_box\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/newsletter-consulting.png\",\"id\":5292}},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69d83834\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5316},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"_element_id\":\"section-team\"},\"elements\":[{\"id\":\"1832d1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c89a980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team member will help you!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Team member\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"49\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6e738dcd\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Lorio Bilton\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"position\":\"Founder of R.C Company\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[]\",\"_id\":\"6982ac2\"}],\"team2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"bce1bad\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Farnand Gorge\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"e2b6c27\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Obira Franc \",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"4dcdc24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a particular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"31c70b6\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"248\",\"height\":\"340\"},\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"team7\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-01.jpg\",\"id\":5300},\"title\":\"Lorio Bilton\",\"position\":\"Founder of R.C Company\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"311a6b9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b3-team-02.jpg\",\"id\":5301},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c5aeeda\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Adam Ivan \",\"position\":\"Chef Advisor\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"709dbaf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"desc\":\"Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\\nparticular topic .pandamic.\",\"phone\":\"1-888-452-1505\",\"email\":\"envato@gmail.com\",\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-behance\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"btn_text\":\"Read more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5e34b\"}]},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"129c33fc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"4586fd90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7bf70d57\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style11\",\"title\":\"Get a estimate\",\"image_left\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-left.jpg\",\"id\":5326},\"image_right\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/contact-image-right.jpg\",\"id\":5329}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"579ffcd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"83\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"7ba49de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bdbb9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"Latest Blog\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9820ffb\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"style_l7\":\"style3\",\"num_words\":15},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d74207d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"478edd05\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29e70c01\",\"elType\":\"widget\",\"settings\":{\"address\":\"New York, United States\",\"coordinate\":\"40.6976684,-74.2605501\",\"markercoordinate\":\"40.6976684,-74.2605501\",\"markericon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/06\\/marker.png\",\"id\":5098},\"style\":\"custom\",\"content\":\"[{\\\"featureType\\\":\\\"administrative\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"landscape\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":\\\"50\\\"},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":\\\"-100\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"30\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"lightness\\\":\\\"40\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"elementType\\\":\\\"all\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]}]\",\"zoom\":\"10\",\"width\":\"auto\",\"height\":\"290px\"},\"elements\":[],\"widgetType\":\"ct_google_map\"},{\"id\":\"693d6d54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/logo-footer.png\",\"id\":5204},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-86\",\"right\":\"0\",\"bottom\":\"-86\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false}]'),(11704,8722,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11705,8722,'_elementor_page_assets','a:0:{}'),(11707,8723,'_elementor_edit_mode','builder'),(11708,8723,'_elementor_template_type','wp-page'),(11709,8723,'_elementor_version','3.5.3'),(11710,8723,'_wp_page_template','default'),(11711,8723,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11712,8723,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11713,8723,'_elementor_page_assets','a:0:{}'),(11716,8724,'_elementor_edit_mode','builder'),(11717,8724,'_elementor_template_type','wp-page'),(11718,8724,'_elementor_version','3.5.3'),(11719,8724,'_wp_page_template','default'),(11720,8724,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11721,8724,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11722,8724,'_elementor_page_assets','a:0:{}'),(11724,8725,'_elementor_edit_mode','builder'),(11725,8725,'_elementor_template_type','wp-page'),(11726,8725,'_elementor_version','3.5.3'),(11727,8725,'_wp_page_template','default'),(11728,8725,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11729,8725,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11730,8725,'_elementor_page_assets','a:0:{}'),(11732,8726,'_elementor_edit_mode','builder'),(11733,8726,'_elementor_template_type','wp-page'),(11734,8726,'_elementor_version','3.5.3'),(11735,8726,'_wp_page_template','default'),(11736,8726,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11737,8726,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11738,8726,'_elementor_page_assets','a:0:{}'),(11741,8727,'_elementor_edit_mode','builder'),(11742,8727,'_elementor_template_type','wp-page'),(11743,8727,'_elementor_version','3.5.3'),(11744,8727,'_wp_page_template','default'),(11745,8727,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11746,8727,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11747,8727,'_elementor_page_assets','a:0:{}'),(11749,8728,'_elementor_edit_mode','builder'),(11750,8728,'_elementor_template_type','wp-page'),(11751,8728,'_elementor_version','3.5.3'),(11752,8728,'_wp_page_template','default'),(11753,8728,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We meet clients wherever they are on their paths to change\\u2014in every industry across the globe\\u2014and partner with them to create lasting value.\\n\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"75e03b0b\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"Market Management\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"Business Analysis\",\"description_text\":\"Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11754,8728,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11755,8728,'_elementor_page_assets','a:0:{}'),(11757,8729,'_elementor_edit_mode','builder'),(11758,8729,'_elementor_template_type','wp-page'),(11759,8729,'_elementor_version','3.5.3'),(11760,8729,'_wp_page_template','default'),(11761,8729,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11762,8729,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11763,8729,'_elementor_page_assets','a:0:{}'),(11766,8730,'_elementor_edit_mode','builder'),(11767,8730,'_elementor_template_type','wp-page'),(11768,8730,'_elementor_version','3.5.3'),(11769,8730,'_wp_page_template','default'),(11770,8730,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11771,8730,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11772,8730,'_elementor_page_assets','a:0:{}'),(11774,8731,'_elementor_edit_mode','builder'),(11775,8731,'_elementor_template_type','wp-page'),(11776,8731,'_elementor_version','3.5.3'),(11777,8731,'_wp_page_template','default'),(11778,8731,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11779,8731,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11780,8731,'_elementor_page_assets','a:0:{}'),(11782,8732,'_elementor_edit_mode','builder'),(11783,8732,'_elementor_template_type','wp-page'),(11784,8732,'_elementor_version','3.5.3'),(11785,8732,'_wp_page_template','default'),(11786,8732,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Nursing Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11787,8732,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11788,8732,'_elementor_page_assets','a:0:{}'),(11790,8733,'_elementor_edit_mode','builder'),(11791,8733,'_elementor_template_type','wp-page'),(11792,8733,'_elementor_version','3.5.3'),(11793,8733,'_wp_page_template','default'),(11794,8733,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Nursing Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11795,8733,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11796,8733,'_elementor_page_assets','a:0:{}'),(11797,8734,'_elementor_edit_mode','builder'),(11798,8734,'_elementor_template_type','wp-page'),(11799,8734,'_elementor_version','3.5.3'),(11800,8734,'_wp_page_template','default'),(11801,8734,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"International Recruitments\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"International Nursing Students\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11802,8734,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11803,8734,'_elementor_page_assets','a:0:{}'),(11804,8735,'_elementor_edit_mode','builder'),(11805,8735,'_elementor_template_type','wp-page'),(11806,8735,'_elementor_version','3.5.3'),(11807,8735,'_wp_page_template','default'),(11808,8735,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11809,8735,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11810,8735,'_elementor_page_assets','a:0:{}'),(11812,8736,'_elementor_edit_mode','builder'),(11813,8736,'_elementor_template_type','wp-page'),(11814,8736,'_elementor_version','3.5.3'),(11815,8736,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (11816,8736,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11817,8736,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11818,8736,'_elementor_page_assets','a:0:{}'),(11820,8737,'_elementor_edit_mode','builder'),(11821,8737,'_elementor_template_type','wp-page'),(11822,8737,'_elementor_version','3.5.3'),(11823,8737,'_wp_page_template','default'),(11824,8737,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11825,8737,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11826,8737,'_elementor_page_assets','a:0:{}'),(11828,8738,'_elementor_edit_mode','builder'),(11829,8738,'_elementor_template_type','wp-page'),(11830,8738,'_elementor_version','3.5.3'),(11831,8738,'_wp_page_template','default'),(11832,8738,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11833,8738,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11834,8738,'_elementor_page_assets','a:0:{}'),(11843,8740,'_wp_attached_file','2022/01/vimal_350x350_acf_cropped.png'),(11844,8740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:37:\"2022/01/vimal_350x350_acf_cropped.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"vimal_350x350_acf_cropped-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:37:\"vimal_350x350_acf_cropped-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:37:\"vimal_350x350_acf_cropped-350x313.png\";s:5:\"width\";i:350;s:6:\"height\";i:313;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:{}}}'),(11845,8741,'_wp_attached_file','2022/01/himaja.png'),(11846,8741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:350;s:4:\"file\";s:18:\"2022/01/himaja.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"himaja-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:18:\"himaja-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"himaja-600x313.png\";s:5:\"width\";i:600;s:6:\"height\";i:313;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:{}}}'),(11847,8742,'_elementor_edit_mode','builder'),(11848,8742,'_elementor_template_type','wp-page'),(11849,8742,'_elementor_version','3.5.3'),(11850,8742,'_wp_page_template','default'),(11851,8742,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11852,8742,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11853,8742,'_elementor_page_assets','a:0:{}'),(11854,8743,'_elementor_edit_mode','builder'),(11855,8743,'_elementor_template_type','wp-page'),(11856,8743,'_elementor_version','3.5.3'),(11857,8743,'_wp_page_template','default'),(11858,8743,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11859,8743,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11860,8743,'_elementor_page_assets','a:0:{}'),(11861,8744,'_elementor_edit_mode','builder'),(11862,8744,'_elementor_template_type','wp-page'),(11863,8744,'_elementor_version','3.5.3'),(11864,8744,'_wp_page_template','default'),(11865,8744,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11866,8744,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11867,8744,'_elementor_page_assets','a:0:{}'),(11868,8745,'_wp_attached_file','2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg'),(11869,8745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:472;s:6:\"height\";i:591;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2019-09-24-at-6.51.14-AM-240x300.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2019-09-24-at-6.51.14-AM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2019-09-24-at-6.51.14-AM-472x313.jpeg\";s:5:\"width\";i:472;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2019-09-24-at-6.51.14-AM-472x450.jpeg\";s:5:\"width\";i:472;s:6:\"height\";i:450;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:{}}}'),(11870,8746,'_wp_attached_file','2022/01/shawn.png'),(11871,8746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:17:\"2022/01/shawn.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shawn-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:17:\"shawn-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:17:\"shawn-640x313.png\";s:5:\"width\";i:640;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:17:\"shawn-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(11879,8748,'_elementor_edit_mode','builder'),(11880,8748,'_elementor_template_type','wp-page'),(11881,8748,'_elementor_version','3.5.3'),(11882,8748,'_wp_page_template','default'),(11883,8748,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11884,8748,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11885,8748,'_elementor_page_assets','a:0:{}'),(11886,8749,'_elementor_edit_mode','builder'),(11887,8749,'_elementor_template_type','wp-page'),(11888,8749,'_elementor_version','3.5.3'),(11889,8749,'_wp_page_template','default'),(11890,8749,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/b2-testimonial-01.jpg\",\"id\":5271},\"title\":\"Farhan Rio\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Kathleen Smith\",\"position\":\"(Agent Manager)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"d501fe3\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Van Hunter \",\"position\":\"(Senior Director)\",\"description\":\"As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.\",\"_id\":\"4c65313\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11891,8749,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11892,8749,'_elementor_page_assets','a:0:{}'),(11893,8750,'_elementor_edit_mode','builder'),(11894,8750,'_elementor_template_type','wp-page'),(11895,8750,'_elementor_version','3.5.3'),(11896,8750,'_wp_page_template','default'),(11897,8750,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11898,8750,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11899,8750,'_elementor_page_assets','a:0:{}'),(11901,8751,'_elementor_edit_mode','builder'),(11902,8751,'_elementor_template_type','wp-page'),(11903,8751,'_elementor_version','3.5.3'),(11904,8751,'_wp_page_template','default'),(11905,8751,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11906,8751,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11907,8751,'_elementor_page_assets','a:0:{}'),(11909,8752,'_elementor_edit_mode','builder'),(11910,8752,'_elementor_template_type','wp-page'),(11911,8752,'_elementor_version','3.5.3'),(11912,8752,'_wp_page_template','default'),(11913,8752,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11914,8752,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11915,8752,'_elementor_page_assets','a:0:{}'),(11917,8753,'_elementor_edit_mode','builder'),(11918,8753,'_elementor_template_type','wp-page'),(11919,8753,'_elementor_version','3.5.3'),(11920,8753,'_wp_page_template','default'),(11921,8753,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11922,8753,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11923,8753,'_elementor_page_assets','a:0:{}'),(11925,8754,'_elementor_edit_mode','builder'),(11926,8754,'_elementor_template_type','wp-page'),(11927,8754,'_elementor_version','3.5.3'),(11928,8754,'_wp_page_template','default'),(11929,8754,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11930,8754,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11931,8754,'_elementor_page_assets','a:0:{}'),(11932,8755,'_elementor_edit_mode','builder'),(11933,8755,'_elementor_template_type','wp-page'),(11934,8755,'_elementor_version','3.5.3'),(11935,8755,'_wp_page_template','default'),(11936,8755,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Amber Lee\",\"position\":\"Co-founder\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11937,8755,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11938,8755,'_elementor_page_assets','a:0:{}'),(11939,8756,'_elementor_edit_mode','builder'),(11940,8756,'_elementor_template_type','wp-page'),(11941,8756,'_elementor_version','3.5.3'),(11942,8756,'_wp_page_template','default'),(11943,8756,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"position\":\"Co-founder\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11944,8756,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11945,8756,'_elementor_page_assets','a:0:{}'),(11947,8757,'_elementor_edit_mode','builder'),(11948,8757,'_elementor_template_type','wp-page'),(11949,8757,'_elementor_version','3.5.3'),(11950,8757,'_wp_page_template','default'),(11951,8757,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"position\":\"Co-founder\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11952,8757,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11953,8757,'_elementor_page_assets','a:0:{}'),(11955,8758,'_elementor_edit_mode','builder'),(11956,8758,'_elementor_template_type','wp-page'),(11957,8758,'_elementor_version','3.5.3'),(11958,8758,'_wp_page_template','default'),(11959,8758,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"position\":\"Co-founder\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Rebecca Leo\",\"position\":\"Marketing\",\"description\":\"Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\",\"_id\":\"cf06f31\"},{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Obira Franc \",\"position\":\"Web Designer\",\"description\":\"So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\",\"_id\":\"fda71a0\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11960,8758,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11961,8758,'_elementor_page_assets','a:0:{}'),(11963,8759,'_elementor_edit_mode','builder'),(11964,8759,'_elementor_template_type','wp-page'),(11965,8759,'_elementor_version','3.5.3'),(11966,8759,'_wp_page_template','default'),(11967,8759,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11968,8759,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11969,8759,'_elementor_page_assets','a:0:{}'),(11971,8760,'_elementor_edit_mode','builder'),(11972,8760,'_elementor_template_type','wp-page'),(11973,8760,'_elementor_version','3.5.3'),(11974,8760,'_wp_page_template','default'),(11975,8760,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11976,8760,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11977,8760,'_elementor_page_assets','a:0:{}'),(11978,8761,'_elementor_edit_mode','builder'),(11979,8761,'_elementor_template_type','wp-page'),(11980,8761,'_elementor_version','3.5.3'),(11981,8761,'_wp_page_template','default'),(11982,8761,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How do you answer for consulting?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"50bf681\"},{\"ac_title\":\"What does Consultio Consulting do?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"807e347\"},{\"ac_title\":\"Can you guarantee that our plan will raise capital?\",\"ac_content\":\"Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An\\nFAQ is a list of frequently asked questions (FAQs) answers\\non a particular topic .\",\"_id\":\"5a2466d\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11983,8761,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11984,8761,'_elementor_page_assets','a:0:{}'),(11985,8762,'_elementor_edit_mode','builder'),(11986,8762,'_elementor_template_type','wp-page'),(11987,8762,'_elementor_version','3.5.3'),(11988,8762,'_wp_page_template','default'),(11989,8762,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(11990,8762,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(11991,8762,'_elementor_page_assets','a:0:{}'),(12003,8767,'_elementor_edit_mode','builder'),(12004,8767,'_elementor_template_type','wp-page'),(12005,8767,'_elementor_version','3.5.3'),(12006,8767,'_wp_page_template','default'),(12007,8767,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (12008,8767,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12009,8767,'_elementor_page_assets','a:0:{}'),(12011,8768,'_elementor_edit_mode','builder'),(12012,8768,'_elementor_template_type','wp-page'),(12013,8768,'_elementor_version','3.5.3'),(12014,8768,'_wp_page_template','default'),(12015,8768,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12016,8768,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12017,8768,'_elementor_page_assets','a:0:{}'),(12019,8769,'_elementor_edit_mode','builder'),(12020,8769,'_elementor_template_type','wp-page'),(12021,8769,'_elementor_version','3.5.3'),(12022,8769,'_wp_page_template','default'),(12023,8769,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12024,8769,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12025,8769,'_elementor_page_assets','a:0:{}'),(12027,8770,'_elementor_edit_mode','builder'),(12028,8770,'_elementor_template_type','wp-page'),(12029,8770,'_elementor_version','3.5.3'),(12030,8770,'_wp_page_template','default'),(12031,8770,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12032,8770,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12033,8770,'_elementor_page_assets','a:0:{}'),(12034,8771,'_elementor_edit_mode','builder'),(12035,8771,'_elementor_template_type','wp-page'),(12036,8771,'_elementor_version','3.5.3'),(12037,8771,'_wp_page_template','default'),(12038,8771,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Our Clients Say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12039,8771,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12040,8771,'_elementor_page_assets','a:0:{}'),(12041,8772,'_elementor_edit_mode','builder'),(12042,8772,'_elementor_template_type','wp-page'),(12043,8772,'_elementor_version','3.5.3'),(12044,8772,'_wp_page_template','default'),(12045,8772,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12046,8772,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12047,8772,'_elementor_page_assets','a:0:{}'),(12048,8773,'_elementor_edit_mode','builder'),(12049,8773,'_elementor_template_type','wp-page'),(12050,8773,'_elementor_version','3.5.3'),(12051,8773,'_wp_page_template','default'),(12052,8773,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12053,8773,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12054,8773,'_elementor_page_assets','a:0:{}'),(12055,8774,'_elementor_edit_mode','builder'),(12056,8774,'_elementor_template_type','wp-page'),(12057,8774,'_elementor_version','3.5.3'),(12058,8774,'_wp_page_template','default'),(12059,8774,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients say\'s\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12060,8774,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12061,8774,'_elementor_page_assets','a:0:{}'),(12062,8775,'_elementor_edit_mode','builder'),(12063,8775,'_elementor_template_type','wp-page'),(12064,8775,'_elementor_version','3.5.3'),(12065,8775,'_wp_page_template','default'),(12066,8775,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12067,8775,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12068,8775,'_elementor_page_assets','a:0:{}'),(12070,8776,'_elementor_edit_mode','builder'),(12071,8776,'_elementor_template_type','wp-page'),(12072,8776,'_elementor_version','3.5.3'),(12073,8776,'_wp_page_template','default'),(12074,8776,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12075,8776,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12076,8776,'_elementor_page_assets','a:0:{}'),(12078,8777,'_elementor_edit_mode','builder'),(12079,8777,'_elementor_template_type','wp-page'),(12080,8777,'_elementor_version','3.5.3'),(12081,8777,'_wp_page_template','default'),(12082,8777,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12083,8777,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12084,8777,'_elementor_page_assets','a:0:{}'),(12086,8778,'_elementor_edit_mode','builder'),(12087,8778,'_elementor_template_type','wp-page'),(12088,8778,'_elementor_version','3.5.3'),(12089,8778,'_wp_page_template','default'),(12090,8778,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12091,8778,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12092,8778,'_elementor_page_assets','a:0:{}'),(12096,8779,'_edit_lock','1642592092:1'),(12097,8780,'_wp_attached_file','2022/01/DIRECT-INTERVIEW.png'),(12098,8780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:462;s:6:\"height\";i:308;s:4:\"file\";s:28:\"2022/01/DIRECT-INTERVIEW.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DIRECT-INTERVIEW-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DIRECT-INTERVIEW-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(12100,8779,'_thumbnail_id','8780'),(12101,8779,'_edit_last','1'),(12102,8779,'external_url',''),(12103,8779,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(12104,8779,'show_sidebar_post',''),(12105,8779,'sidebar_post_pos','right'),(12106,8779,'video_url',''),(12107,8779,'custom_header',''),(12108,8779,'header_layout','24'),(12109,8779,'custom_pagetitle','show'),(12110,8779,'ptitle_bg','a:2:{s:16:\"background-image\";s:88:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"8780\";s:6:\"height\";s:3:\"308\";s:5:\"width\";s:3:\"462\";s:9:\"thumbnail\";s:96:\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW-150x150.png\";}}'),(12111,8779,'_elementor_edit_mode','builder'),(12112,8779,'_elementor_template_type','wp-post'),(12113,8779,'_elementor_version','3.5.3'),(12114,8779,'post_views_count','6'),(12116,8782,'_thumbnail_id','8780'),(12117,8782,'_elementor_edit_mode','builder'),(12118,8782,'_elementor_template_type','wp-post'),(12119,8782,'_elementor_version','3.5.3'),(12120,8783,'_thumbnail_id','8780'),(12121,8783,'_elementor_edit_mode','builder'),(12122,8783,'_elementor_template_type','wp-post'),(12123,8783,'_elementor_version','3.5.3'),(12124,8779,'_wp_page_template','default'),(12125,8779,'_elementor_data','[{\"id\":\"6198443\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b64ebd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a880263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Benefits of Package<\\/h2><ul><li>Starting Salary \\u00a324,214 per annum<\\/li><li>Free flight ticket<\\/li><li>Three month Free Accommodation<\\/li><li>Refund of visa<\\/li><li>Refund the CBT exam cost<\\/li><li>Refund the OSCE exam cost<\\/li><li>Refund of Academic IELTS exam fee<\\/li><li>Free OSCE Training<\\/li><li>Refund of NMC Application Fee<\\/li><\\/ul><h3>Who Can Apply?<\\/h3><ul><li>Experience :Operation theater<\\/li><li>Minimum experience : 6 months above<\\/li><li>Only the candidate with IELTS 7\\/ OET-B (Individual or clubbed) will be interviewed.<\\/li><li>According to new NMC criteria, we accept IELTS Writing score 6.5<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fbe4420\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12126,8784,'_thumbnail_id','8780'),(12127,8784,'_elementor_edit_mode','builder'),(12128,8784,'_elementor_template_type','wp-post'),(12129,8784,'_elementor_version','3.5.3'),(12130,8784,'_wp_page_template','default'),(12131,8784,'_elementor_data','[{\"id\":\"6198443\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b64ebd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a880263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Benefits of Package<\\/h2><ul><li>Starting Salary \\u00a324,214 per annum<\\/li><li>Free flight ticket<\\/li><li>Three month Free Accommodation<\\/li><li>Refund of visa<\\/li><li>Refund the CBT exam cost<\\/li><li>Refund the OSCE exam cost<\\/li><li>Refund of Academic IELTS exam fee<\\/li><li>Free OSCE Training<\\/li><li>Refund of NMC Application Fee<\\/li><\\/ul><h3>Who Can Apply?<\\/h3><ul><li>Experience :Operation theater<\\/li><li>Minimum experience : 6 months above<\\/li><li>Only the candidate with IELTS 7\\/ OET-B (Individual or clubbed) will be interviewed.<\\/li><li>According to new NMC criteria, we accept IELTS Writing score 6.5<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fbe4420\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12132,8779,'_elementor_page_assets','a:0:{}'),(12135,8785,'_thumbnail_id','8780'),(12136,8785,'_elementor_edit_mode','builder'),(12137,8785,'_elementor_template_type','wp-post'),(12138,8785,'_elementor_version','3.5.3'),(12139,8785,'_wp_page_template','default'),(12140,8785,'_elementor_data','[{\"id\":\"6198443\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b64ebd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a880263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Benefits of Package<\\/h2><ul><li>Starting Salary \\u00a324,214 per annum<\\/li><li>Free flight ticket<\\/li><li>Three month Free Accommodation<\\/li><li>Refund of visa<\\/li><li>Refund the CBT exam cost<\\/li><li>Refund the OSCE exam cost<\\/li><li>Refund of Academic IELTS exam fee<\\/li><li>Free OSCE Training<\\/li><li>Refund of NMC Application Fee<\\/li><\\/ul><h3>Who Can Apply?<\\/h3><ul><li>Experience :Operation theater<\\/li><li>Minimum experience : 6 months above<\\/li><li>Only the candidate with IELTS 7\\/ OET-B (Individual or clubbed) will be interviewed.<\\/li><li>According to new NMC criteria, we accept IELTS Writing score 6.5<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fbe4420\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12141,8785,'_elementor_page_assets','a:0:{}'),(12144,8786,'_edit_lock','1644818710:1'),(12145,8787,'_wp_attached_file','2022/01/perm_post1-1.png'),(12146,8787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:462;s:6:\"height\";i:266;s:4:\"file\";s:24:\"2022/01/perm_post1-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"perm_post1-1-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"perm_post1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(12148,8786,'_thumbnail_id','8787'),(12149,8786,'_edit_last','1'),(12150,8786,'external_url',''),(12151,8786,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(12152,8786,'show_sidebar_post',''),(12153,8786,'sidebar_post_pos','right'),(12154,8786,'video_url',''),(12155,8786,'custom_header',''),(12156,8786,'header_layout','24'),(12157,8786,'custom_pagetitle','themeoption'),(12158,8786,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(12159,8786,'_elementor_edit_mode','builder'),(12160,8786,'_elementor_template_type','wp-post'),(12161,8786,'_elementor_version','3.5.3'),(12162,8786,'post_views_count','12'),(12164,8789,'_thumbnail_id','8787'),(12165,8789,'_elementor_edit_mode','builder'),(12166,8789,'_elementor_template_type','wp-post'),(12167,8789,'_elementor_version','3.5.3'),(12168,8790,'_thumbnail_id','8787'),(12169,8790,'_elementor_edit_mode','builder'),(12170,8790,'_elementor_template_type','wp-post'),(12171,8790,'_elementor_version','3.5.3'),(12172,8786,'_wp_page_template','default'),(12173,8786,'_elementor_data','[{\"id\":\"139a692\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2705b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2919a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><u>Four Seasons Health Care Now Hiring\\u00a0<\\/u><\\/strong><\\/h4><p><strong>Benefits of the Package:<\\/strong><\\/p><ul><li>Salary band \\u00a316 - \\u00a318 per hour.<\\/li><\\/ul><p><strong>Job Description:<\\/strong><\\/p><ul><li>Maintain accurate, detailed reports and records.<\\/li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.<\\/li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.<\\/li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. \\u00b7\\u00a0<\\/li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. \\u00b7\\u00a0<\\/li><li>To have responsibility for frontline supervision and supervise the care staff. \\u00b7\\u00a0<\\/li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.<\\/li><\\/ul><p><strong>Job Specification:<\\/strong><\\/p><ul><li>Registered Nurse with NMC PIN number required.<\\/li><li>Minimum one year experience in adult care.<\\/li><li>A proven track record of working in a similar adult care environment.<\\/li><li>The ability to ensure that residents\\u2019 needs, wishes and aspirations are acknowledged and met where possible.<\\/li><li>Excellent communication skills.\\u00a0<\\/li><li>Able to interact with residents, their families and members of staff.\\u00a0<\\/li><\\/ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"935b01f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12174,8791,'_thumbnail_id','8787'),(12175,8791,'_elementor_edit_mode','builder'),(12176,8791,'_elementor_template_type','wp-post'),(12177,8791,'_elementor_version','3.5.3'),(12178,8791,'_wp_page_template','default'),(12179,8791,'_elementor_data','[{\"id\":\"139a692\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2705b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2919a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><u>Four Seasons Health Care Now Hiring\\u00a0<\\/u><\\/strong><\\/h4><p><strong>Benefits of the Package:<\\/strong><\\/p><ul><li>Salary band \\u00a316 - \\u00a318 per hour.<\\/li><\\/ul><p><strong>Job Description:<\\/strong><\\/p><ul><li>Maintain accurate, detailed reports and records.<\\/li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.<\\/li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.<\\/li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. \\u00b7\\u00a0<\\/li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. \\u00b7\\u00a0<\\/li><li>To have responsibility for frontline supervision and supervise the care staff. \\u00b7\\u00a0<\\/li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.<\\/li><\\/ul><p><strong>Job Specification:<\\/strong><\\/p><ul><li>Registered Nurse with NMC PIN number required.<\\/li><li>Minimum one year experience in adult care.<\\/li><li>A proven track record of working in a similar adult care environment.<\\/li><li>The ability to ensure that residents\\u2019 needs, wishes and aspirations are acknowledged and met where possible.<\\/li><li>Excellent communication skills.\\u00a0<\\/li><li>Able to interact with residents, their families and members of staff.\\u00a0<\\/li><\\/ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"935b01f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12180,8786,'_elementor_page_assets','a:0:{}'),(12193,8794,'_elementor_edit_mode','builder'),(12194,8794,'_elementor_template_type','wp-page'),(12195,8794,'_elementor_version','3.5.3'),(12196,8794,'_wp_page_template','default'),(12197,8794,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12198,8794,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12199,8794,'_elementor_page_assets','a:0:{}'),(12200,8795,'_elementor_edit_mode','builder'),(12201,8795,'_elementor_template_type','wp-page'),(12202,8795,'_elementor_version','3.5.3'),(12203,8795,'_wp_page_template','default'),(12204,8795,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news from resource library. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Our Blog\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12205,8795,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12206,8795,'_elementor_page_assets','a:0:{}'),(12207,8796,'_elementor_edit_mode','builder'),(12208,8796,'_elementor_template_type','wp-page'),(12209,8796,'_elementor_version','3.5.3'),(12210,8796,'_wp_page_template','default'),(12211,8796,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12212,8796,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12213,8796,'_elementor_page_assets','a:0:{}'),(12214,8797,'_elementor_edit_mode','builder'),(12215,8797,'_elementor_template_type','wp-page'),(12216,8797,'_elementor_version','3.5.3'),(12217,8797,'_wp_page_template','default'),(12218,8797,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12219,8797,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12220,8797,'_elementor_page_assets','a:0:{}'),(12221,8798,'_elementor_edit_mode','builder'),(12222,8798,'_elementor_template_type','wp-page'),(12223,8798,'_elementor_version','3.5.3'),(12224,8798,'_wp_page_template','default'),(12225,8798,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12226,8798,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12227,8798,'_elementor_page_assets','a:0:{}'),(12228,8799,'_elementor_edit_mode','builder'),(12229,8799,'_elementor_template_type','wp-page'),(12230,8799,'_elementor_version','3.5.3'),(12231,8799,'_wp_page_template','default'),(12232,8799,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on study abroad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12233,8799,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12234,8799,'_elementor_page_assets','a:0:{}'),(12235,8800,'_elementor_edit_mode','builder'),(12236,8800,'_elementor_template_type','wp-page'),(12237,8800,'_elementor_version','3.5.3'),(12238,8800,'_wp_page_template','default'),(12239,8800,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on study abroad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12240,8800,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12241,8800,'_elementor_page_assets','a:0:{}'),(12242,8801,'_elementor_edit_mode','builder'),(12243,8801,'_elementor_template_type','wp-page'),(12244,8801,'_elementor_version','3.5.3'),(12245,8801,'_wp_page_template','default'),(12246,8801,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on study abroad.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12247,8801,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12248,8801,'_elementor_page_assets','a:0:{}'),(12249,8802,'_elementor_edit_mode','builder'),(12250,8802,'_elementor_template_type','wp-page'),(12251,8802,'_elementor_version','3.5.3'),(12252,8802,'_wp_page_template','default'),(12253,8802,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12254,8802,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12255,8802,'_elementor_page_assets','a:0:{}'),(12257,8803,'_elementor_edit_mode','builder'),(12258,8803,'_elementor_template_type','wp-page'),(12259,8803,'_elementor_version','3.5.3'),(12260,8803,'_wp_page_template','default'),(12261,8803,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12262,8803,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12263,8803,'_elementor_page_assets','a:0:{}'),(12265,8804,'_elementor_edit_mode','builder'),(12266,8804,'_elementor_template_type','wp-page'),(12267,8804,'_elementor_version','3.5.3'),(12268,8804,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (12269,8804,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Case Studies\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12270,8804,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12271,8804,'_elementor_page_assets','a:0:{}'),(12273,8805,'_elementor_edit_mode','builder'),(12274,8805,'_elementor_template_type','wp-page'),(12275,8805,'_elementor_version','3.5.3'),(12276,8805,'_wp_page_template','default'),(12277,8805,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12278,8805,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12279,8805,'_elementor_page_assets','a:0:{}'),(12284,8806,'_wp_attached_file','2022/01/580b57fcd9996e24bc43c543.png'),(12285,8806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:36:\"2022/01/580b57fcd9996e24bc43c543.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"580b57fcd9996e24bc43c543-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:36:\"580b57fcd9996e24bc43c543-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:36:\"580b57fcd9996e24bc43c543-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:36:\"580b57fcd9996e24bc43c543-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:36:\"580b57fcd9996e24bc43c543-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(12286,8808,'_edit_last','1'),(12287,8808,'nta_wa_account_info','a:7:{s:6:\"number\";s:10:\"7712717163\";s:5:\"title\";s:12:\"Chat with us\";s:14:\"predefinedText\";s:0:\"\";s:14:\"willBeBackText\";s:34:\"I will be back in [njwa_time_work]\";s:11:\"dayOffsText\";s:19:\"I will be back soon\";s:17:\"isAlwaysAvailable\";s:2:\"ON\";s:17:\"daysOfWeekWorking\";a:7:{s:6:\"sunday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:6:\"monday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:7:\"tuesday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:9:\"wednesday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:8:\"thursday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:6:\"friday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:8:\"saturday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}}}'),(12288,8808,'nta_wa_button_styles','a:6:{s:4:\"type\";s:5:\"round\";s:15:\"backgroundColor\";s:7:\"#2DB742\";s:9:\"textColor\";s:4:\"#fff\";s:5:\"label\";s:23:\"Need Help? Chat with us\";s:5:\"width\";i:300;s:6:\"height\";i:64;}'),(12289,8808,'nta_wa_widget_show','ON'),(12290,8808,'nta_wa_widget_position','0'),(12291,8808,'nta_wa_wc_show','OFF'),(12292,8808,'nta_wa_wc_position','0'),(12293,8808,'_edit_lock','1642591573:1'),(12294,8809,'_edit_last','1'),(12295,8809,'nta_wa_account_info','a:7:{s:6:\"number\";s:10:\"7549888986\";s:5:\"title\";s:12:\"Chat with us\";s:14:\"predefinedText\";s:0:\"\";s:14:\"willBeBackText\";s:34:\"I will be back in [njwa_time_work]\";s:11:\"dayOffsText\";s:19:\"I will be back soon\";s:17:\"isAlwaysAvailable\";s:2:\"ON\";s:17:\"daysOfWeekWorking\";a:7:{s:6:\"sunday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:6:\"monday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:7:\"tuesday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:9:\"wednesday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:8:\"thursday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:6:\"friday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}s:8:\"saturday\";a:2:{s:14:\"isWorkingOnDay\";s:3:\"OFF\";s:9:\"workHours\";a:1:{i:0;a:2:{s:9:\"startTime\";s:5:\"08:00\";s:7:\"endTime\";s:5:\"17:30\";}}}}}'),(12296,8809,'nta_wa_button_styles','a:6:{s:4:\"type\";s:5:\"round\";s:15:\"backgroundColor\";s:7:\"#2DB742\";s:9:\"textColor\";s:4:\"#fff\";s:5:\"label\";s:23:\"Need Help? Chat with us\";s:5:\"width\";i:300;s:6:\"height\";i:64;}'),(12297,8809,'nta_wa_widget_show','ON'),(12298,8809,'nta_wa_widget_position','0'),(12299,8809,'nta_wa_wc_show','OFF'),(12300,8809,'nta_wa_wc_position','0'),(12301,8809,'_edit_lock','1642591526:1'),(12303,8810,'_thumbnail_id','8787'),(12304,8810,'_elementor_edit_mode','builder'),(12305,8810,'_elementor_template_type','wp-post'),(12306,8810,'_elementor_version','3.5.3'),(12307,8810,'_wp_page_template','default'),(12308,8810,'_elementor_data','[{\"id\":\"139a692\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2705b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2919a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><u>Four Seasons Health Care Now Hiring\\u00a0<\\/u><\\/strong><\\/h4><p><strong>Benefits of the Package:<\\/strong><\\/p><ul><li>Salary band \\u00a316 - \\u00a318 per hour.<\\/li><\\/ul><p><strong>Job Description:<\\/strong><\\/p><ul><li>Maintain accurate, detailed reports and records.<\\/li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.<\\/li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.<\\/li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. \\u00b7\\u00a0<\\/li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. \\u00b7\\u00a0<\\/li><li>To have responsibility for frontline supervision and supervise the care staff. \\u00b7\\u00a0<\\/li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.<\\/li><\\/ul><p><strong>Job Specification:<\\/strong><\\/p><ul><li>Registered Nurse with NMC PIN number required.<\\/li><li>Minimum one year experience in adult care.<\\/li><li>A proven track record of working in a similar adult care environment.<\\/li><li>The ability to ensure that residents\\u2019 needs, wishes and aspirations are acknowledged and met where possible.<\\/li><li>Excellent communication skills.\\u00a0<\\/li><li>Able to interact with residents, their families and members of staff.\\u00a0<\\/li><\\/ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"935b01f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12309,8810,'_elementor_page_assets','a:0:{}'),(12312,8811,'_thumbnail_id','8780'),(12313,8811,'_elementor_edit_mode','builder'),(12314,8811,'_elementor_template_type','wp-post'),(12315,8811,'_elementor_version','3.5.3'),(12316,8811,'_wp_page_template','default'),(12317,8811,'_elementor_data','[{\"id\":\"6198443\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b64ebd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a880263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Benefits of Package<\\/h2><ul><li>Starting Salary \\u00a324,214 per annum<\\/li><li>Free flight ticket<\\/li><li>Three month Free Accommodation<\\/li><li>Refund of visa<\\/li><li>Refund the CBT exam cost<\\/li><li>Refund the OSCE exam cost<\\/li><li>Refund of Academic IELTS exam fee<\\/li><li>Free OSCE Training<\\/li><li>Refund of NMC Application Fee<\\/li><\\/ul><h3>Who Can Apply?<\\/h3><ul><li>Experience :Operation theater<\\/li><li>Minimum experience : 6 months above<\\/li><li>Only the candidate with IELTS 7\\/ OET-B (Individual or clubbed) will be interviewed.<\\/li><li>According to new NMC criteria, we accept IELTS Writing score 6.5<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fbe4420\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12318,8811,'_elementor_page_assets','a:0:{}'),(12322,8812,'_wp_page_template','default'),(12323,8812,'_elementor_controls_usage','a:0:{}'),(12324,8812,'_thumbnail_id','8638'),(12325,8812,'_elementor_edit_mode','builder'),(12326,8812,'_elementor_template_type','wp-post'),(12327,8812,'_elementor_version','3.5.3'),(12328,8812,'_elementor_data','[{\"id\":\"373c1f7c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6b0a4b71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f1079b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span class=\\\"main-title-style\\\"><a href=\\\"https:\\/\\/ealoorconsultancy.co.uk\\/news-events\\/gloucester-hospitals-nhs-foundations-trust-direct-interview\\/\\\">Gloucester Hospitals NHS Foundations Trust \\u2013 Direct Interview<\\/a><\\/span><\\/p>\\n<p><\\/p>\\n<h2>Benefits of Package<\\/h2>\\n<ul><li>Starting Salary \\u00a324,214 per annum<\\/li>\\n<li>One way flight to the UK<\\/li>\\n<li>One month Free Accommodation<\\/li>\\n<li>Free Certificate Of Sponsorship<\\/li>\\n<li>Free 1 x OSCE exam cost<\\/li>\\n<li>Refund the Medical Exams \\/ TB Screening<\\/li>\\n<li>Refund Visa Application<\\/li>\\n<li>Refund the Immigration Health Surcharge<\\/li>\\n<li>Refund the CBT exam cost<\\/li>\\n<li>Refund of NMC Application Fee<\\/li><\\/ul>\\n<h3>Who Can Apply?<\\/h3>\\n<ul>\\n<li>Theatre and Surgery Nurses with NMC Decision letter.<\\/li>\\n<li>Theatre and Surgery Nurses: New assessment completed candidates.<\\/li>\\n<li>Candidates ready to travel on April 2020<\\/li>\\n<li>Immediate COS for interview successful candidates.<\\/li>\\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9996756\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(12329,8812,'_elementor_page_assets','a:0:{}'),(12331,8813,'_wp_attached_file','2022/01/Untitled-2.jpg'),(12332,8813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:169;s:6:\"height\";i:95;s:4:\"file\";s:22:\"2022/01/Untitled-2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Untitled-2-150x95.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(12333,8814,'_elementor_edit_mode','builder'),(12334,8814,'_elementor_template_type','wp-page'),(12335,8814,'_elementor_version','3.5.3'),(12336,8814,'_wp_page_template','default'),(12337,8814,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12338,8814,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12339,8814,'_elementor_page_assets','a:0:{}'),(12341,8815,'_elementor_edit_mode','builder'),(12342,8815,'_elementor_template_type','wp-page'),(12343,8815,'_elementor_version','3.5.3'),(12344,8815,'_wp_page_template','default'),(12345,8815,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"3182c13\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"c510f7f\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0c1af19\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"40e5cb7\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12346,8815,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12347,8815,'_elementor_page_assets','a:0:{}'),(12349,8816,'_elementor_edit_mode','builder'),(12350,8816,'_elementor_template_type','wp-page'),(12351,8816,'_elementor_version','3.5.3'),(12352,8816,'_wp_page_template','default'),(12353,8816,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12354,8816,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12355,8816,'_elementor_page_assets','a:0:{}'),(12406,8828,'_wp_page_template','default'),(12407,8828,'_elementor_edit_mode','builder'),(12408,8828,'_elementor_template_type','wp-page'),(12409,8828,'_elementor_version','3.5.3'),(12410,8828,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12411,8828,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12412,8828,'_elementor_page_assets','a:0:{}'),(12414,8829,'_wp_page_template','default'),(12415,8829,'_elementor_edit_mode','builder'),(12416,8829,'_elementor_template_type','wp-page'),(12417,8829,'_elementor_version','3.5.3'),(12418,8829,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12419,8829,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12420,8829,'_elementor_page_assets','a:0:{}'),(12422,8830,'_wp_page_template','default'),(12423,8830,'_elementor_edit_mode','builder'),(12424,8830,'_elementor_template_type','wp-page'),(12425,8830,'_elementor_version','3.5.3'),(12426,8830,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12427,8830,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12428,8830,'_elementor_page_assets','a:0:{}'),(12431,8831,'_wp_page_template','default'),(12432,8831,'_elementor_edit_mode','builder'),(12433,8831,'_elementor_template_type','wp-page'),(12434,8831,'_elementor_version','3.5.3'),(12435,8831,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12436,8831,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12437,8831,'_elementor_page_assets','a:0:{}'),(12439,8832,'_wp_page_template','default'),(12440,8832,'_elementor_edit_mode','builder'),(12441,8832,'_elementor_template_type','wp-page'),(12442,8832,'_elementor_version','3.5.3'),(12443,8832,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12444,8832,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12445,8832,'_elementor_page_assets','a:0:{}'),(12447,8833,'_wp_page_template','default'),(12448,8833,'_elementor_edit_mode','builder'),(12449,8833,'_elementor_template_type','wp-page'),(12450,8833,'_elementor_version','3.5.3'),(12451,8833,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12452,8833,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12453,8833,'_elementor_page_assets','a:0:{}'),(12473,8836,'_wp_page_template','default'),(12474,8836,'_elementor_edit_mode','builder'),(12475,8836,'_elementor_template_type','wp-post'),(12476,8836,'_elementor_version','3.5.3'),(12477,8836,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8524,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\"},{\"id\":8523,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\"},{\"id\":7781,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/11\\/u-blog-02.jpg\"},{\"id\":7525,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\"},{\"id\":7500,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/12\\/h-case1.jpg\"},{\"id\":7416,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\"},{\"id\":7135,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider3.jpg\"},{\"id\":7267,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\"},{\"id\":7099,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider1.jpg\"},{\"id\":7134,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider2.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(12478,8836,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(12479,8836,'_elementor_page_assets','a:0:{}'),(12484,8837,'_elementor_edit_mode','builder'),(12485,8837,'_elementor_template_type','wp-page'),(12486,8837,'_elementor_version','3.5.3'),(12487,8837,'_wp_page_template','default'),(12488,8837,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12489,8837,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12490,8837,'_elementor_page_assets','a:0:{}'),(12492,8838,'_elementor_edit_mode','builder'),(12493,8838,'_elementor_template_type','wp-page'),(12494,8838,'_elementor_version','3.5.3'),(12495,8838,'_wp_page_template','default'),(12496,8838,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality <br\\/>support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/youtu.be\\/HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12497,8838,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12498,8838,'_elementor_page_assets','a:0:{}'),(12500,8839,'_elementor_edit_mode','builder'),(12501,8839,'_elementor_template_type','wp-page'),(12502,8839,'_elementor_version','3.5.3'),(12503,8839,'_wp_page_template','default'),(12504,8839,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12505,8839,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12506,8839,'_elementor_page_assets','a:0:{}'),(12510,367,'_elementor_page_assets','a:0:{}'),(12512,3497,'_elementor_page_assets','a:0:{}'),(12514,3500,'_elementor_page_assets','a:0:{}'),(12516,3502,'_elementor_page_assets','a:0:{}'),(12517,8840,'_elementor_edit_mode','builder'),(12518,8840,'_elementor_template_type','wp-page'),(12519,8840,'_elementor_version','3.5.3'),(12520,8840,'_wp_page_template','default'),(12521,8840,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12522,8840,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12523,8840,'_elementor_page_assets','a:0:{}'),(12525,8841,'_elementor_edit_mode','builder'),(12526,8841,'_elementor_template_type','wp-page'),(12527,8841,'_elementor_version','3.5.3'),(12528,8841,'_wp_page_template','default'),(12529,8841,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back <br\\/>guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team <br\\/>members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price <br\\/>provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12530,8841,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12531,8841,'_elementor_page_assets','a:0:{}'),(12533,8842,'_elementor_edit_mode','builder'),(12534,8842,'_elementor_template_type','wp-page'),(12535,8842,'_elementor_version','3.5.3'),(12536,8842,'_wp_page_template','default'),(12537,8842,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12538,8842,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12539,8842,'_elementor_page_assets','a:0:{}'),(12554,8844,'_elementor_edit_mode','builder'),(12555,8844,'_elementor_template_type','wp-page'),(12556,8844,'_elementor_version','3.5.3'),(12557,8844,'_wp_page_template','default'),(12558,8844,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12559,8844,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12560,8844,'_elementor_page_assets','a:0:{}'),(12562,8845,'_elementor_edit_mode','builder'),(12563,8845,'_elementor_template_type','wp-page'),(12564,8845,'_elementor_version','3.5.3'),(12565,8845,'_wp_page_template','default'),(12566,8845,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12567,8845,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12568,8845,'_elementor_page_assets','a:0:{}'),(12570,8846,'_elementor_edit_mode','builder'),(12571,8846,'_elementor_template_type','wp-page'),(12572,8846,'_elementor_version','3.5.3'),(12573,8846,'_wp_page_template','default'),(12574,8846,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12575,8846,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12576,8846,'_elementor_page_assets','a:0:{}'),(12594,8848,'_elementor_edit_mode','builder'),(12595,8848,'_elementor_template_type','wp-page'),(12596,8848,'_elementor_version','3.5.3'),(12597,8848,'_wp_page_template','default'),(12598,8848,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12599,8848,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12600,8848,'_elementor_page_assets','a:0:{}'),(12602,8849,'_elementor_edit_mode','builder'),(12603,8849,'_elementor_template_type','wp-page'),(12604,8849,'_elementor_version','3.5.3'),(12605,8849,'_wp_page_template','default'),(12606,8849,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\"},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12607,8849,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12608,8849,'_elementor_page_assets','a:0:{}'),(12610,8850,'_elementor_edit_mode','builder'),(12611,8850,'_elementor_template_type','wp-page'),(12612,8850,'_elementor_version','3.5.3'),(12613,8850,'_wp_page_template','default'),(12614,8850,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"-93\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12615,8850,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12616,8850,'_elementor_page_assets','a:0:{}'),(12630,8852,'_elementor_edit_mode','builder'),(12631,8852,'_elementor_template_type','wp-page'),(12632,8852,'_elementor_version','3.5.3'),(12633,8852,'_wp_page_template','default'),(12634,8852,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"-93\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12635,8852,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12636,8852,'_elementor_page_assets','a:0:{}'),(12638,8853,'_elementor_edit_mode','builder'),(12639,8853,'_elementor_template_type','wp-page'),(12640,8853,'_elementor_version','3.5.3'),(12641,8853,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (12642,8853,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"-1\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"-93\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12643,8853,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12644,8853,'_elementor_page_assets','a:0:{}'),(12646,8854,'_elementor_edit_mode','builder'),(12647,8854,'_elementor_template_type','wp-page'),(12648,8854,'_elementor_version','3.5.3'),(12649,8854,'_wp_page_template','default'),(12650,8854,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12651,8854,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12652,8854,'_elementor_page_assets','a:0:{}'),(12657,3502,'_edit_lock','1642765998:1'),(12658,8856,'_wp_page_template','default'),(12659,8856,'_elementor_edit_mode','builder'),(12660,8856,'_elementor_template_type','wp-page'),(12661,8856,'_elementor_version','2.8.5'),(12662,8856,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-whatsapp\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12663,8856,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12665,8856,'_elementor_page_assets','a:0:{}'),(12666,8857,'_wp_page_template','default'),(12667,8857,'_elementor_edit_mode','builder'),(12668,8857,'_elementor_template_type','wp-page'),(12669,8857,'_elementor_version','2.8.5'),(12670,8857,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-whatsapp\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12671,8857,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12673,8857,'_elementor_page_assets','a:0:{}'),(12674,8858,'_wp_page_template','default'),(12675,8858,'_elementor_edit_mode','builder'),(12676,8858,'_elementor_template_type','wp-page'),(12677,8858,'_elementor_version','2.8.5'),(12678,8858,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12679,8858,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12681,8858,'_elementor_page_assets','a:0:{}'),(12689,8860,'_wp_page_template','default'),(12690,8860,'_elementor_edit_mode','builder'),(12691,8860,'_elementor_template_type','wp-page'),(12692,8860,'_elementor_version','3.5.3'),(12693,8860,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12694,8860,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12695,8860,'_elementor_page_assets','a:0:{}'),(12696,8861,'_wp_page_template','default'),(12697,8861,'_elementor_edit_mode','builder'),(12698,8861,'_elementor_template_type','wp-page'),(12699,8861,'_elementor_version','3.5.3'),(12700,8861,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12701,8861,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12702,8861,'_elementor_page_assets','a:0:{}'),(12703,8862,'_wp_page_template','default'),(12704,8862,'_elementor_edit_mode','builder'),(12705,8862,'_elementor_template_type','wp-page'),(12706,8862,'_elementor_version','3.5.3'),(12707,8862,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12708,8862,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12709,8862,'_elementor_page_assets','a:0:{}'),(12710,8863,'_elementor_edit_mode','builder'),(12711,8863,'_elementor_template_type','wp-page'),(12712,8863,'_elementor_version','3.5.3'),(12713,8863,'_wp_page_template','default'),(12714,8863,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12715,8863,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12716,8863,'_elementor_page_assets','a:0:{}'),(12718,8864,'_elementor_edit_mode','builder'),(12719,8864,'_elementor_template_type','wp-page'),(12720,8864,'_elementor_version','3.5.3'),(12721,8864,'_wp_page_template','default'),(12722,8864,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12723,8864,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12724,8864,'_elementor_page_assets','a:0:{}'),(12726,8865,'_elementor_edit_mode','builder'),(12727,8865,'_elementor_template_type','wp-page'),(12728,8865,'_elementor_version','3.5.3'),(12729,8865,'_wp_page_template','default'),(12730,8865,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12731,8865,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12732,8865,'_elementor_page_assets','a:0:{}'),(12744,8867,'_wp_page_template','default'),(12745,8867,'_elementor_edit_mode','builder'),(12746,8867,'_elementor_template_type','wp-page'),(12747,8867,'_elementor_version','3.5.3'),(12748,8867,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12749,8867,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12750,8867,'_elementor_page_assets','a:0:{}'),(12751,8868,'_wp_page_template','default'),(12752,8868,'_elementor_edit_mode','builder'),(12753,8868,'_elementor_template_type','wp-page'),(12754,8868,'_elementor_version','3.5.3'),(12755,8868,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12756,8868,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12757,8868,'_elementor_page_assets','a:0:{}'),(12758,8869,'_wp_page_template','default'),(12759,8869,'_elementor_edit_mode','builder'),(12760,8869,'_elementor_template_type','wp-page'),(12761,8869,'_elementor_version','3.5.3'),(12762,8869,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12763,8869,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12764,8869,'_elementor_page_assets','a:0:{}'),(12766,8870,'_wp_page_template','default'),(12767,8870,'_elementor_edit_mode','builder'),(12768,8870,'_elementor_template_type','wp-page'),(12769,8870,'_elementor_version','3.5.3'),(12770,8870,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC \\u2018Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\",\"social\":\"[{\\\"icon\\\":\\\"\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12771,8870,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12772,8870,'_elementor_page_assets','a:0:{}'),(12774,3502,'header_type','layout'),(12775,3502,'e_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(12776,3502,'get_revslide',''),(12777,3502,'hidden_logo','themeoption'),(12778,3502,'p_h_style1','themeoption'),(12779,3502,'h_custom_menu',''),(12780,3502,'h_custom_menu_left',''),(12781,3502,'h_custom_menu_right',''),(12782,3502,'ptitle_display','show'),(12783,3502,'ptitle_breadcrumb_page','themeoption'),(12784,3502,'ptitle_breadcrumb_color',''),(12785,3502,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(12786,3502,'p_primary_color',''),(12787,3502,'p_secondary_color',''),(12788,3502,'p_third_color',''),(12798,8872,'_elementor_edit_mode','builder'),(12799,8872,'_elementor_template_type','wp-page'),(12800,8872,'_elementor_version','3.5.3'),(12801,8872,'_wp_page_template','default'),(12802,8872,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12803,8872,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12804,8872,'_elementor_page_assets','a:0:{}'),(12806,8873,'_elementor_edit_mode','builder'),(12807,8873,'_elementor_template_type','wp-page'),(12808,8873,'_elementor_version','3.5.3'),(12809,8873,'_wp_page_template','default'),(12810,8873,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12811,8873,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12812,8873,'_elementor_page_assets','a:0:{}'),(12814,8874,'_elementor_edit_mode','builder'),(12815,8874,'_elementor_template_type','wp-page'),(12816,8874,'_elementor_version','3.5.3'),(12817,8874,'_wp_page_template','default'),(12818,8874,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12819,8874,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12820,8874,'_elementor_page_assets','a:0:{}'),(12825,5003,'_config_errors','a:2:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";i:103;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}s:13:\"mail_2.sender\";a:1:{i:0;a:2:{s:4:\"code\";i:103;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:70:\"https://contactform7.com/configuration-errors/email-not-in-site-domain\";}}}}'),(12834,8877,'_wp_attached_file','2022/01/cheerful-students-jumping-excitement-scaled.jpg'),(12835,8877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2022/01/cheerful-students-jumping-excitement-scaled.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"cheerful-students-jumping-excitement-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:49:\"cheerful-students-jumping-excitement-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:48:\"cheerful-students-jumping-excitement-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:48:\"cheerful-students-jumping-excitement-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1499776222\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"cheerful-students-jumping-excitement.jpg\";}'),(12836,8878,'_wp_attached_file','2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg'),(12837,8878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:78:\"2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"multiethnic-group-young-cheerful-students-standing-outdoors-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:72:\"multiethnic-group-young-cheerful-students-standing-outdoors-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:71:\"multiethnic-group-young-cheerful-students-standing-outdoors-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:71:\"multiethnic-group-young-cheerful-students-standing-outdoors-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:32:\"Pavel Vladychenko  vk.com/altern\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:90:\"Picture of multiethnic group of young cheerful students standing outdoors. Looking camera.\";s:17:\"created_timestamp\";s:10:\"1496736427\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:62:\"Multiethnic group of young cheerful students standing outdoors\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:43:{i:0;s:6:\"camera\";i:1;s:9:\"buildings\";i:2;s:6:\"campus\";i:3;s:7:\"college\";i:4;s:9:\"education\";i:5;s:6:\"female\";i:6;s:7:\"friends\";i:7;s:10:\"friendship\";i:8;s:5:\"group\";i:9;s:5:\"hands\";i:10;s:5:\"happy\";i:11;s:13:\"international\";i:12;s:3:\"joy\";i:13;s:7:\"looking\";i:14;s:4:\"male\";i:15;s:3:\"men\";i:16;s:5:\"multi\";i:17;s:7:\"network\";i:18;s:8:\"outdoors\";i:19;s:7:\"outside\";i:20;s:4:\"park\";i:21;s:6:\"people\";i:22;s:10:\"positivity\";i:23;s:7:\"reading\";i:24;s:12:\"satisfaction\";i:25;s:9:\"satisfied\";i:26;s:6:\"school\";i:27;s:8:\"students\";i:28;s:7:\"success\";i:29;s:7:\"talking\";i:30;s:4:\"team\";i:31;s:8:\"teamwork\";i:32;s:9:\"teenagers\";i:33;s:8:\"together\";i:34;s:12:\"togetherness\";i:35;s:5:\"unity\";i:36;s:10:\"university\";i:37;s:5:\"woman\";i:38;s:5:\"young\";i:39;s:5:\"youth\";i:40;s:5:\"asian\";i:41;s:9:\"caucasian\";i:42;s:7:\"african\";}}s:14:\"original_image\";s:63:\"multiethnic-group-young-cheerful-students-standing-outdoors.jpg\";}'),(12838,8879,'_elementor_edit_mode','builder'),(12839,8879,'_elementor_template_type','wp-page'),(12840,8879,'_elementor_version','3.5.3'),(12841,8879,'_wp_page_template','default'),(12842,8879,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12843,8879,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12844,8879,'_elementor_page_assets','a:0:{}'),(12845,8880,'_elementor_edit_mode','builder'),(12846,8880,'_elementor_template_type','wp-page'),(12847,8880,'_elementor_version','3.5.3'),(12848,8880,'_wp_page_template','default'),(12849,8880,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-business3\\/wp-content\\/uploads\\/2020\\/08\\/video-intro.jpg\",\"id\":5243},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12850,8880,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12851,8880,'_elementor_page_assets','a:0:{}'),(12852,8881,'_elementor_edit_mode','builder'),(12853,8881,'_elementor_template_type','wp-page'),(12854,8881,'_elementor_version','3.5.3'),(12855,8881,'_wp_page_template','default'),(12856,8881,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12857,8881,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12858,8881,'_elementor_page_assets','a:0:{}'),(12860,8882,'_wp_attached_file','2022/01/cheerful-students-standing-waving-outdoors-scaled.jpg'),(12861,8882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:61:\"2022/01/cheerful-students-standing-waving-outdoors-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"cheerful-students-standing-waving-outdoors-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:55:\"cheerful-students-standing-waving-outdoors-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:54:\"cheerful-students-standing-waving-outdoors-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:54:\"cheerful-students-standing-waving-outdoors-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:56:\"cheerful-students-standing-waving-outdoors-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:32:\"Pavel Vladychenko  vk.com/altern\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:102:\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\";s:17:\"created_timestamp\";s:10:\"1496736101\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:47:\"Cheerful students standing and waving outdoors.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:41:{i:0;s:9:\"buildings\";i:1;s:6:\"campus\";i:2;s:7:\"college\";i:3;s:9:\"education\";i:4;s:6:\"female\";i:5;s:7:\"friends\";i:6;s:10:\"friendship\";i:7;s:5:\"group\";i:8;s:5:\"hands\";i:9;s:5:\"happy\";i:10;s:13:\"international\";i:11;s:3:\"joy\";i:12;s:7:\"looking\";i:13;s:4:\"male\";i:14;s:3:\"men\";i:15;s:5:\"multi\";i:16;s:7:\"network\";i:17;s:8:\"outdoors\";i:18;s:7:\"outside\";i:19;s:4:\"park\";i:20;s:6:\"people\";i:21;s:10:\"positivity\";i:22;s:7:\"reading\";i:23;s:12:\"satisfaction\";i:24;s:9:\"satisfied\";i:25;s:6:\"school\";i:26;s:8:\"students\";i:27;s:7:\"success\";i:28;s:7:\"talking\";i:29;s:4:\"team\";i:30;s:8:\"teamwork\";i:31;s:9:\"teenagers\";i:32;s:8:\"together\";i:33;s:12:\"togetherness\";i:34;s:5:\"unity\";i:35;s:10:\"university\";i:36;s:5:\"woman\";i:37;s:5:\"young\";i:38;s:5:\"youth\";i:39;s:6:\"waving\";i:40;s:6:\"camera\";}}s:14:\"original_image\";s:46:\"cheerful-students-standing-waving-outdoors.jpg\";}'),(12862,8883,'_wp_attached_file','2022/01/portrait-group-students-celebrating-their-graduation.jpg'),(12863,8884,'_wp_attached_file','2022/01/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg'),(12864,8884,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:77:\"2022/01/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"young-female-surgeon-with-medical-team-back-before-surgery-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:71:\"young-female-surgeon-with-medical-team-back-before-surgery-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:70:\"young-female-surgeon-with-medical-team-back-before-surgery-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:70:\"young-female-surgeon-with-medical-team-back-before-surgery-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:72:\"young-female-surgeon-with-medical-team-back-before-surgery-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:14:\"Anna Zielinska\";s:6:\"camera\";s:9:\"NIKON D3X\";s:7:\"caption\";s:61:\"Young female surgeon with medical team in back before surgery\";s:17:\"created_timestamp\";s:10:\"1335627469\";s:9:\"copyright\";s:13:\"Gpoint Studio\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:61:\"Young female surgeon with medical team in back before surgery\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:7:\"Surgeon\";i:1;s:4:\"Mask\";i:2;s:6:\"Doctor\";i:3;s:5:\"Woman\";i:4;s:10:\"Occupation\";i:5;s:12:\"Surgical Cap\";i:6;s:8:\"Hospital\";i:7;s:17:\"Medical Procedure\";i:8;s:7:\"Surgery\";i:9;s:23:\"Healthcare And Medicine\";i:10;s:7:\"Hygiene\";i:11;s:8:\"Standing\";i:12;s:6:\"Female\";i:13;s:11:\"Four People\";i:14;s:6:\"Spooky\";i:15;s:19:\"Protective Workwear\";i:16;s:14:\"Operating Room\";i:17;s:4:\"Care\";i:18;s:4:\"Blue\";i:19;s:17:\"Looking At Camera\";i:20;s:8:\"Medicine\";i:21;s:17:\"Medical Equipment\";i:22;s:17:\"Beauty And Health\";i:23;s:18:\"Medical Occupation\";i:24;s:17:\"Healthcare Worker\";i:25;s:23:\"Professional Occupation\";i:26;s:7:\"Uniform\";i:27;s:10:\"Assistance\";i:28;s:8:\"Teamwork\";i:29;s:3:\"Man\";i:30;s:15:\"Group Of People\";i:31;s:4:\"Busy\";i:32;s:18:\"Emergency Services\";i:33;s:6:\"Clinic\";i:34;s:8:\"Lab Coat\";i:35;s:14:\"Surgical Glove\";i:36;s:12:\"Medical Exam\";i:37;s:13:\"Surgical Mask\";i:38;s:7:\"Working\";i:39;s:9:\"Operating\";i:40;s:10:\"Complexity\";i:41;s:17:\"Healthy Lifestyle\";i:42;s:5:\"Apron\";i:43;s:11:\"Preparation\";i:44;s:11:\"Cooperation\";}}s:14:\"original_image\";s:62:\"young-female-surgeon-with-medical-team-back-before-surgery.jpg\";}'),(12865,8885,'_wp_attached_file','2022/01/group-students-happy-be-back-university-scaled.jpg'),(12866,8885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:58:\"2022/01/group-students-happy-be-back-university-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"group-students-happy-be-back-university-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:52:\"group-students-happy-be-back-university-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:51:\"group-students-happy-be-back-university-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:51:\"group-students-happy-be-back-university-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:53:\"group-students-happy-be-back-university-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"group-students-happy-be-back-university-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:51:\"group-students-happy-be-back-university-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:51:\"group-students-happy-be-back-university-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:38:\"Freepik Company S.L. - www.freepik.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"group-students-happy-be-back-university.jpg\";}'),(12867,8886,'_wp_attached_file','2022/01/doctor-talking-their-clinic.jpg'),(12868,8887,'_wp_page_template','default'),(12869,8887,'_elementor_edit_mode','builder'),(12870,8887,'_elementor_template_type','wp-page'),(12871,8887,'_elementor_version','3.5.3'),(12872,8887,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12873,8887,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12874,8887,'_elementor_page_assets','a:0:{}'),(12876,8888,'_wp_page_template','default'),(12877,8888,'_elementor_edit_mode','builder'),(12878,8888,'_elementor_template_type','wp-page'),(12879,8888,'_elementor_version','3.5.3'),(12880,8888,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12881,8888,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12882,8888,'_elementor_page_assets','a:0:{}'),(12884,8889,'_wp_page_template','default'),(12885,8889,'_elementor_edit_mode','builder'),(12886,8889,'_elementor_template_type','wp-page'),(12887,8889,'_elementor_version','3.5.3'),(12888,8889,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12889,8889,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12890,8889,'_elementor_page_assets','a:0:{}'),(12892,8890,'_wp_page_template','default'),(12893,8890,'_elementor_edit_mode','builder'),(12894,8890,'_elementor_template_type','wp-page'),(12895,8890,'_elementor_version','3.5.3'),(12896,8890,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12897,8890,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12898,8890,'_elementor_page_assets','a:0:{}'),(12899,8891,'_wp_page_template','default'),(12900,8891,'_elementor_edit_mode','builder'),(12901,8891,'_elementor_template_type','wp-page'),(12902,8891,'_elementor_version','3.5.3'),(12903,8891,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12904,8891,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12905,8891,'_elementor_page_assets','a:0:{}'),(12906,8892,'_wp_page_template','default'),(12907,8892,'_elementor_edit_mode','builder'),(12908,8892,'_elementor_template_type','wp-page'),(12909,8892,'_elementor_version','3.5.3'),(12910,8892,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12911,8892,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12912,8892,'_elementor_page_assets','a:0:{}'),(12913,8893,'_wp_page_template','default'),(12914,8893,'_elementor_edit_mode','builder'),(12915,8893,'_elementor_template_type','wp-page'),(12916,8893,'_elementor_version','3.5.3'),(12917,8893,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12918,8893,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12919,8893,'_elementor_page_assets','a:0:{}'),(12921,8894,'_wp_page_template','default'),(12922,8894,'_elementor_edit_mode','builder'),(12923,8894,'_elementor_template_type','wp-page'),(12924,8894,'_elementor_version','3.5.3'),(12925,8894,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12926,8894,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12927,8894,'_elementor_page_assets','a:0:{}'),(12929,8895,'_wp_page_template','default'),(12930,8895,'_elementor_edit_mode','builder'),(12931,8895,'_elementor_template_type','wp-page'),(12932,8895,'_elementor_version','3.5.3'),(12933,8895,'_elementor_data','[{\"id\":\"bf2574e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac2d973\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e296c51\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bea7eb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3ddef8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ba3c759\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style11\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\",\"id\":8884,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"4227\",\"style_l1\":\"style11\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY UK LTD.\",\"description_text\":\"Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"info@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel:+44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3b76926\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f620ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"f82fba6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR OVERSEAS EDUCATION CONSULTANCY\",\"description_text\":\"Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e5db01d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"7c0538c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"c204b6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"87af987\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel : 0484 4017565 <br>\\nMob No: +91 9995399366\\/ +91 9995205566 <br>\\nWhatsApp: +91 9995377366<br>\\n UK Land Line: +44 161 456 7166\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"002d048\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"050\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5f3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"024c5cf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"EALOOR CONSULTANCY & ACADAMY\",\"description_text\":\"Nagampadam Kottayam - 686006 Kerala India\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8c88d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":32.64999999999999857891452847979962825775146484375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"9823522\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"studies@ealoorconsultancy.co.uk<br\\/>\\nstudyabroad@ealoorconsultancy.co.uk\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"8f4ed93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"5dc8b09\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"Tel: 91-481-2581566\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_size\":\"h6\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12934,8895,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(12935,8895,'_elementor_page_assets','a:0:{}'),(12938,8896,'_elementor_edit_mode','builder'),(12939,8896,'_elementor_template_type','wp-page'),(12940,8896,'_elementor_version','3.5.3'),(12941,8896,'_wp_page_template','default'),(12942,8896,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12943,8896,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12944,8896,'_elementor_page_assets','a:0:{}'),(12946,8897,'_elementor_edit_mode','builder'),(12947,8897,'_elementor_template_type','wp-page'),(12948,8897,'_elementor_version','3.5.3'),(12949,8897,'_wp_page_template','default'),(12950,8897,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-marketing\\/wp-content\\/uploads\\/2020\\/02\\/about-testimonial.jpg\",\"id\":4265},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12951,8897,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12952,8897,'_elementor_page_assets','a:0:{}'),(12954,8898,'_elementor_edit_mode','builder'),(12955,8898,'_elementor_template_type','wp-page'),(12956,8898,'_elementor_version','3.5.3'),(12957,8898,'_wp_page_template','default'),(12958,8898,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12959,8898,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12960,8898,'_elementor_page_assets','a:0:{}'),(12963,8899,'_elementor_edit_mode','builder'),(12964,8899,'_elementor_template_type','wp-page'),(12965,8899,'_elementor_version','3.5.3'),(12966,8899,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (12967,8899,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12968,8899,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12969,8899,'_elementor_page_assets','a:0:{}'),(12971,8900,'_elementor_edit_mode','builder'),(12972,8900,'_elementor_template_type','wp-page'),(12973,8900,'_elementor_version','3.5.3'),(12974,8900,'_wp_page_template','default'),(12975,8900,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12976,8900,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12977,8900,'_elementor_page_assets','a:0:{}'),(12979,8901,'_elementor_edit_mode','builder'),(12980,8901,'_elementor_template_type','wp-page'),(12981,8901,'_elementor_version','3.5.3'),(12982,8901,'_wp_page_template','default'),(12983,8901,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12984,8901,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12985,8901,'_elementor_page_assets','a:0:{}'),(12988,8902,'_elementor_edit_mode','builder'),(12989,8902,'_elementor_template_type','wp-page'),(12990,8902,'_elementor_version','3.5.3'),(12991,8902,'_wp_page_template','default'),(12992,8902,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(12993,8902,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(12994,8902,'_elementor_page_assets','a:0:{}'),(12996,8903,'_elementor_edit_mode','builder'),(12997,8903,'_elementor_template_type','wp-page'),(12998,8903,'_elementor_version','3.5.3'),(12999,8903,'_wp_page_template','default'),(13000,8903,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"107\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13001,8903,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13002,8903,'_elementor_page_assets','a:0:{}'),(13004,8904,'_elementor_edit_mode','builder'),(13005,8904,'_elementor_template_type','wp-page'),(13006,8904,'_elementor_version','3.5.3'),(13007,8904,'_wp_page_template','default'),(13008,8904,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13009,8904,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13010,8904,'_elementor_page_assets','a:0:{}'),(13013,8905,'_elementor_edit_mode','builder'),(13014,8905,'_elementor_template_type','wp-page'),(13015,8905,'_elementor_version','3.5.3'),(13016,8905,'_wp_page_template','default'),(13017,8905,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13018,8905,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13019,8905,'_elementor_page_assets','a:0:{}'),(13021,8906,'_elementor_edit_mode','builder'),(13022,8906,'_elementor_template_type','wp-page'),(13023,8906,'_elementor_version','3.5.3'),(13024,8906,'_wp_page_template','default'),(13025,8906,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13026,8906,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13027,8906,'_elementor_page_assets','a:0:{}'),(13029,8907,'_elementor_edit_mode','builder'),(13030,8907,'_elementor_template_type','wp-page'),(13031,8907,'_elementor_version','3.5.3'),(13032,8907,'_wp_page_template','default'),(13033,8907,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13034,8907,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13035,8907,'_elementor_page_assets','a:0:{}'),(13037,8908,'_elementor_edit_mode','builder'),(13038,8908,'_elementor_template_type','wp-page'),(13039,8908,'_elementor_version','3.5.3'),(13040,8908,'_wp_page_template','default'),(13041,8908,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13042,8908,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13043,8908,'_elementor_page_assets','a:0:{}'),(13044,8909,'_elementor_edit_mode','builder'),(13045,8909,'_elementor_template_type','wp-page'),(13046,8909,'_elementor_version','3.5.3'),(13047,8909,'_wp_page_template','default'),(13048,8909,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13049,8909,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13050,8909,'_elementor_page_assets','a:0:{}'),(13051,8910,'_elementor_edit_mode','builder'),(13052,8910,'_elementor_template_type','wp-page'),(13053,8910,'_elementor_version','3.5.3'),(13054,8910,'_wp_page_template','default'),(13055,8910,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13056,8910,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13057,8910,'_elementor_page_assets','a:0:{}'),(13059,8911,'_elementor_edit_mode','builder'),(13060,8911,'_elementor_template_type','wp-page'),(13061,8911,'_elementor_version','3.5.3'),(13062,8911,'_wp_page_template','default'),(13063,8911,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13064,8911,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13065,8911,'_elementor_page_assets','a:0:{}'),(13067,8912,'_elementor_edit_mode','builder'),(13068,8912,'_elementor_template_type','wp-page'),(13069,8912,'_elementor_version','3.5.3'),(13070,8912,'_wp_page_template','default'),(13071,8912,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13072,8912,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13073,8912,'_elementor_page_assets','a:0:{}'),(13075,8913,'_elementor_edit_mode','builder'),(13076,8913,'_elementor_template_type','wp-page'),(13077,8913,'_elementor_version','3.5.3'),(13078,8913,'_wp_page_template','default'),(13079,8913,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13080,8913,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13081,8913,'_elementor_page_assets','a:0:{}'),(13087,8916,'_elementor_edit_mode','builder'),(13088,8916,'_elementor_template_type','wp-page'),(13089,8916,'_elementor_version','3.5.3'),(13090,8916,'_wp_page_template','default'),(13091,8916,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13092,8916,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13093,8916,'_elementor_page_assets','a:0:{}'),(13095,8917,'_elementor_edit_mode','builder'),(13096,8917,'_elementor_template_type','wp-page'),(13097,8917,'_elementor_version','3.5.3'),(13098,8917,'_wp_page_template','default'),(13099,8917,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13100,8917,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13101,8917,'_elementor_page_assets','a:0:{}'),(13103,8918,'_elementor_edit_mode','builder'),(13104,8918,'_elementor_template_type','wp-page'),(13105,8918,'_elementor_version','3.5.3'),(13106,8918,'_wp_page_template','default'),(13107,8918,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13108,8918,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13109,8918,'_elementor_page_assets','a:0:{}'),(13121,8920,'_edit_last','1'),(13122,8920,'_edit_lock','1643083110:1'),(13123,8920,'_elementor_edit_mode','builder'),(13124,8920,'_elementor_template_type','wp-post'),(13125,8920,'_elementor_version','3.5.3'),(13126,8921,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.jpeg'),(13127,8921,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:315;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.50-PM-300x158.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.50-PM-600x313.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:313;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:{}}}'),(13128,8922,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.jpeg'),(13129,8922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:300;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.jpeg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}'),(13130,8923,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.jpeg'),(13131,8923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:516;s:4:\"file\";s:52:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-300x129.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-1024x440.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-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:52:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-768x330.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(13133,8924,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png'),(13134,8924,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-8.02.14-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13135,8925,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png'),(13136,8925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-8.02.13-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13137,8926,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png'),(13138,8926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-8.02.12-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13139,8927,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png'),(13140,8927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13141,8928,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png'),(13142,8928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.56-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13143,8929,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png'),(13144,8929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.55-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13145,8930,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png'),(13146,8930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:53:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.55-PM-2-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13147,8931,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png'),(13148,8931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:53:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-01-24-at-7.55.55-PM-1-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13149,8932,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png'),(13150,8932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.54-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13151,8933,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png'),(13152,8933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.53-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13153,8934,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png'),(13154,8934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13155,8935,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png'),(13156,8935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13157,8936,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png'),(13158,8936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13159,8937,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png'),(13160,8937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13161,8938,'_wp_attached_file','2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png'),(13162,8938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:95;s:4:\"file\";s:51:\"2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\";s:5:\"width\";i:150;s:6:\"height\";i:95;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:{}}}'),(13163,8939,'_elementor_edit_mode','builder'),(13164,8939,'_elementor_template_type','wp-page'),(13165,8939,'_elementor_version','3.5.3'),(13166,8939,'_wp_page_template','default'),(13167,8939,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13168,8939,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13169,8939,'_elementor_page_assets','a:0:{}'),(13171,8940,'_elementor_edit_mode','builder'),(13172,8940,'_elementor_template_type','wp-page'),(13173,8940,'_elementor_version','3.5.3'),(13174,8940,'_wp_page_template','default'),(13175,8940,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13176,8940,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13177,8940,'_elementor_page_assets','a:0:{}'),(13179,8941,'_elementor_edit_mode','builder'),(13180,8941,'_elementor_template_type','wp-page'),(13181,8941,'_elementor_version','3.5.3'),(13182,8941,'_wp_page_template','default'),(13183,8941,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13184,8941,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13185,8941,'_elementor_page_assets','a:0:{}'),(13188,8942,'_wp_page_template','default'),(13189,8942,'_elementor_edit_mode','builder'),(13190,8942,'_elementor_template_type','wp-page'),(13191,8942,'_elementor_version','3.5.3'),(13192,8942,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13193,8942,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13194,8942,'_elementor_page_assets','a:0:{}'),(13196,8943,'_wp_page_template','default'),(13197,8943,'_elementor_edit_mode','builder'),(13198,8943,'_elementor_template_type','wp-page'),(13199,8943,'_elementor_version','3.5.3');
INSERT INTO `wp_postmeta` VALUES (13200,8943,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/Untitled-2.jpg\",\"id\":8813,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13201,8943,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13202,8943,'_elementor_page_assets','a:0:{}'),(13204,8944,'_wp_page_template','default'),(13205,8944,'_elementor_edit_mode','builder'),(13206,8944,'_elementor_template_type','wp-page'),(13207,8944,'_elementor_version','3.5.3'),(13208,8944,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13209,8944,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13210,8944,'_elementor_page_assets','a:0:{}'),(13213,8945,'_wp_page_template','default'),(13214,8945,'_elementor_edit_mode','builder'),(13215,8945,'_elementor_template_type','wp-page'),(13216,8945,'_elementor_version','3.5.3'),(13217,8945,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13218,8945,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13219,8945,'_elementor_page_assets','a:0:{}'),(13221,8946,'_wp_page_template','default'),(13222,8946,'_elementor_edit_mode','builder'),(13223,8946,'_elementor_template_type','wp-page'),(13224,8946,'_elementor_version','3.5.3'),(13225,8946,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13226,8946,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13227,8946,'_elementor_page_assets','a:0:{}'),(13229,8947,'_wp_page_template','default'),(13230,8947,'_elementor_edit_mode','builder'),(13231,8947,'_elementor_template_type','wp-page'),(13232,8947,'_elementor_version','3.5.3'),(13233,8947,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13234,8947,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13235,8947,'_elementor_page_assets','a:0:{}'),(13238,8948,'_elementor_edit_mode','builder'),(13239,8948,'_elementor_template_type','wp-page'),(13240,8948,'_elementor_version','3.5.3'),(13241,8948,'_wp_page_template','default'),(13242,8948,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13243,8948,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13244,8948,'_elementor_page_assets','a:0:{}'),(13246,8949,'_elementor_edit_mode','builder'),(13247,8949,'_elementor_template_type','wp-page'),(13248,8949,'_elementor_version','3.5.3'),(13249,8949,'_wp_page_template','default'),(13250,8949,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13251,8949,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13252,8949,'_elementor_page_assets','a:0:{}'),(13254,8950,'_elementor_edit_mode','builder'),(13255,8950,'_elementor_template_type','wp-page'),(13256,8950,'_elementor_version','3.5.3'),(13257,8950,'_wp_page_template','default'),(13258,8950,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13259,8950,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13260,8950,'_elementor_page_assets','a:0:{}'),(13277,8953,'_menu_item_type','custom'),(13278,8953,'_menu_item_menu_item_parent','0'),(13279,8953,'_menu_item_object_id','8953'),(13280,8953,'_menu_item_object','custom'),(13281,8953,'_menu_item_target',''),(13282,8953,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13283,8953,'_menu_item_xfn',''),(13284,8953,'_menu_item_url','#'),(13295,8512,'_wp_old_date','2022-01-19'),(13296,8636,'_wp_old_date','2022-01-19'),(13297,8514,'_wp_old_date','2022-01-19'),(13298,8515,'_wp_old_date','2022-01-19'),(13299,8516,'_wp_old_date','2022-01-19'),(13300,8672,'_wp_old_date','2022-01-19'),(13301,8953,'_menu_item_ct_megaprofile','0'),(13302,8953,'_menu_item_ct_icon',''),(13303,8953,'_menu_item_ct_onepage','no-one-page'),(13304,8953,'_menu_item_ct_onepage_offset',''),(13305,8953,'_menu_item_ct_custom_class',''),(13306,8953,'_menu_item_ct_menu_marker',''),(13328,8956,'_menu_item_type','custom'),(13329,8956,'_menu_item_menu_item_parent','8515'),(13330,8956,'_menu_item_object_id','8956'),(13331,8956,'_menu_item_object','custom'),(13332,8956,'_menu_item_target',''),(13333,8956,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13334,8956,'_menu_item_xfn',''),(13335,8956,'_menu_item_url','https://www.nursingjobsuk.co.uk/our-clients'),(13337,8957,'_menu_item_type','custom'),(13338,8957,'_menu_item_menu_item_parent','8515'),(13339,8957,'_menu_item_object_id','8957'),(13340,8957,'_menu_item_object','custom'),(13341,8957,'_menu_item_target',''),(13342,8957,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13343,8957,'_menu_item_xfn',''),(13344,8957,'_menu_item_url','https://comparestudyabroad.co.uk/'),(13346,8956,'_menu_item_ct_megaprofile','0'),(13347,8956,'_menu_item_ct_icon',''),(13348,8956,'_menu_item_ct_onepage','no-one-page'),(13349,8956,'_menu_item_ct_onepage_offset',''),(13350,8956,'_menu_item_ct_custom_class',''),(13351,8956,'_menu_item_ct_menu_marker',''),(13352,8957,'_menu_item_ct_megaprofile','0'),(13353,8957,'_menu_item_ct_icon',''),(13354,8957,'_menu_item_ct_onepage','no-one-page'),(13355,8957,'_menu_item_ct_onepage_offset',''),(13356,8957,'_menu_item_ct_custom_class',''),(13357,8957,'_menu_item_ct_menu_marker',''),(13364,6370,'_elementor_page_assets','a:0:{}'),(13368,8960,'_menu_item_type','custom'),(13369,8960,'_menu_item_menu_item_parent','8514'),(13370,8960,'_menu_item_object_id','8960'),(13371,8960,'_menu_item_object','custom'),(13372,8960,'_menu_item_target',''),(13373,8960,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13374,8960,'_menu_item_xfn',''),(13375,8960,'_menu_item_url','https://demoweblinks.in/comparestudyabroad/'),(13377,8512,'_wp_old_date','2022-01-31'),(13378,8636,'_wp_old_date','2022-01-31'),(13379,8953,'_wp_old_date','2022-01-31'),(13382,8514,'_wp_old_date','2022-01-31'),(13383,8960,'_menu_item_ct_megaprofile','0'),(13384,8960,'_menu_item_ct_icon',''),(13385,8960,'_menu_item_ct_onepage','no-one-page'),(13386,8960,'_menu_item_ct_onepage_offset',''),(13387,8960,'_menu_item_ct_custom_class',''),(13388,8960,'_menu_item_ct_menu_marker',''),(13389,8515,'_wp_old_date','2022-01-31'),(13390,8956,'_wp_old_date','2022-01-31'),(13391,8957,'_wp_old_date','2022-01-31'),(13392,8516,'_wp_old_date','2022-01-31'),(13393,8672,'_wp_old_date','2022-01-31'),(13394,8961,'_menu_item_type','custom'),(13395,8961,'_menu_item_menu_item_parent','8516'),(13396,8961,'_menu_item_object_id','8961'),(13397,8961,'_menu_item_object','custom'),(13398,8961,'_menu_item_target',''),(13399,8961,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13400,8961,'_menu_item_xfn',''),(13401,8961,'_menu_item_url','#'),(13403,8962,'_menu_item_type','custom'),(13404,8962,'_menu_item_menu_item_parent','8516'),(13405,8962,'_menu_item_object_id','8962'),(13406,8962,'_menu_item_object','custom'),(13407,8962,'_menu_item_target',''),(13408,8962,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13409,8962,'_menu_item_xfn',''),(13410,8962,'_menu_item_url','#'),(13412,8961,'_menu_item_ct_megaprofile','0'),(13413,8961,'_menu_item_ct_icon',''),(13414,8961,'_menu_item_ct_onepage','no-one-page'),(13415,8961,'_menu_item_ct_onepage_offset',''),(13416,8961,'_menu_item_ct_custom_class',''),(13417,8961,'_menu_item_ct_menu_marker',''),(13418,8962,'_menu_item_ct_megaprofile','0'),(13419,8962,'_menu_item_ct_icon',''),(13420,8962,'_menu_item_ct_onepage','no-one-page'),(13421,8962,'_menu_item_ct_onepage_offset',''),(13422,8962,'_menu_item_ct_custom_class',''),(13423,8962,'_menu_item_ct_menu_marker',''),(13424,8677,'rs_page_bg_color',''),(13425,8677,'_wp_old_slug','ealoor-study-abroad'),(13426,8964,'_elementor_edit_mode','builder'),(13427,8964,'_elementor_template_type','wp-page'),(13428,8964,'_elementor_version','3.5.3'),(13429,8964,'_wp_page_template','default'),(13430,8964,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13431,8964,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13432,8964,'_elementor_page_assets','a:0:{}'),(13434,8965,'_elementor_edit_mode','builder'),(13435,8965,'_elementor_template_type','wp-page'),(13436,8965,'_elementor_version','3.5.3'),(13437,8965,'_wp_page_template','default'),(13438,8965,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-crown\",\"library\":\"flaticonv7\"},\"title_text\":\"Best quality support\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-shield\",\"library\":\"flaticonv7\"},\"title_text\":\"Money back guarantee\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-follower\",\"library\":\"flaticonv7\"},\"title_text\":\"Expert team members\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticonv7 flaticonv7-leaf\",\"library\":\"flaticonv7\"},\"title_text\":\"Cheap price provided\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13439,8965,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13440,8965,'_elementor_page_assets','a:0:{}'),(13442,8966,'_elementor_edit_mode','builder'),(13443,8966,'_elementor_template_type','wp-page'),(13444,8966,'_elementor_version','3.5.3'),(13445,8966,'_wp_page_template','default'),(13446,8966,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ea1bde\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f23e1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"844d422\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"eab6b68\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"234f91f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242208a\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"392539b\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(13447,8966,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13448,8966,'_elementor_page_assets','a:0:{}'),(13459,8968,'_elementor_edit_mode','builder'),(13460,8968,'_elementor_template_type','wp-page'),(13461,8968,'_elementor_version','3.5.4'),(13462,8968,'_wp_page_template','default'),(13463,8968,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ea1bde\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f23e1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"844d422\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"eab6b68\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"234f91f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242208a\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"392539b\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(13464,8968,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13465,8968,'_elementor_page_assets','a:0:{}'),(13467,8969,'_elementor_edit_mode','builder'),(13468,8969,'_elementor_template_type','wp-page'),(13469,8969,'_elementor_version','3.5.4'),(13470,8969,'_wp_page_template','default'),(13471,8969,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ea1bde\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f23e1c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"844d422\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"eab6b68\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"234f91f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"242208a\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8938,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\"},{\"id\":8937,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\"},{\"id\":8936,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\"},{\"id\":8935,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\"},{\"id\":8934,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\"},{\"id\":8927,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\"}],\"gallery_columns\":\"3\"},\"elements\":[],\"widgetType\":\"image-gallery\"},{\"id\":\"392539b\",\"elType\":\"widget\",\"settings\":{\"text\":\"View More\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false}]'),(13472,8969,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13473,8969,'_elementor_page_assets','a:0:{}'),(13475,8970,'_elementor_edit_mode','builder'),(13476,8970,'_elementor_template_type','wp-page'),(13477,8970,'_elementor_version','3.5.4'),(13478,8970,'_wp_page_template','default'),(13479,8970,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13480,8970,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13481,8970,'_elementor_page_assets','a:0:{}'),(13483,8971,'_wp_attached_file','2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg'),(13484,8971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:673;s:6:\"height\";i:278;s:4:\"file\";s:52:\"2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.24.51-PM-300x124.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.24.51-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.24.51-PM-600x278.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:278;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:{}}}'),(13485,8972,'_wp_attached_file','2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg'),(13486,8972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1104;s:6:\"height\";i:320;s:4:\"file\";s:52:\"2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-300x87.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-1024x297.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-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:52:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-768x223.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2022-02-02-at-8.19.53-PM-600x320.jpeg\";s:5:\"width\";i:600;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:{}}}'),(13487,8973,'_elementor_edit_mode','builder'),(13488,8973,'_elementor_template_type','wp-page'),(13489,8973,'_elementor_version','3.5.4'),(13490,8973,'_wp_page_template','default'),(13491,8973,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13492,8973,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13493,8973,'_elementor_page_assets','a:0:{}'),(13494,8974,'_elementor_edit_mode','builder'),(13495,8974,'_elementor_template_type','wp-page'),(13496,8974,'_elementor_version','3.5.4'),(13497,8974,'_wp_page_template','default'),(13498,8974,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style8\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13499,8974,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13500,8974,'_elementor_page_assets','a:0:{}'),(13501,8975,'_elementor_edit_mode','builder'),(13502,8975,'_elementor_template_type','wp-page'),(13503,8975,'_elementor_version','3.5.4'),(13504,8975,'_wp_page_template','default'),(13505,8975,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13506,8975,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13507,8975,'_elementor_page_assets','a:0:{}'),(13508,8976,'_wp_page_template','default'),(13509,8976,'_elementor_edit_mode','builder'),(13510,8976,'_elementor_template_type','wp-page'),(13511,8976,'_elementor_version','3.5.3'),(13512,8976,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13513,8976,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13514,8976,'_elementor_page_assets','a:0:{}'),(13515,8977,'_wp_page_template','default'),(13516,8977,'_elementor_edit_mode','builder'),(13517,8977,'_elementor_template_type','wp-page'),(13518,8977,'_elementor_version','3.5.3'),(13519,8977,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13520,8977,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13521,8977,'_elementor_page_assets','a:0:{}'),(13522,8978,'_wp_page_template','default'),(13523,8978,'_elementor_edit_mode','builder'),(13524,8978,'_elementor_template_type','wp-page'),(13525,8978,'_elementor_version','3.5.3'),(13526,8978,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13527,8978,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13528,8978,'_elementor_page_assets','a:0:{}'),(13529,8979,'_wp_page_template','default'),(13530,8979,'_elementor_edit_mode','builder'),(13531,8979,'_elementor_template_type','wp-page'),(13532,8979,'_elementor_version','3.5.4'),(13533,8979,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13534,8979,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13535,8979,'_elementor_page_assets','a:0:{}'),(13536,8980,'_wp_page_template','default'),(13537,8980,'_elementor_edit_mode','builder'),(13538,8980,'_elementor_template_type','wp-page'),(13539,8980,'_elementor_version','3.5.4'),(13540,8980,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13541,8980,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13542,8980,'_elementor_page_assets','a:0:{}'),(13543,8981,'_wp_page_template','default'),(13544,8981,'_elementor_edit_mode','builder'),(13545,8981,'_elementor_template_type','wp-page'),(13546,8981,'_elementor_version','3.5.4'),(13547,8981,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13548,8981,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13549,8981,'_elementor_page_assets','a:0:{}'),(13551,8982,'_wp_page_template','default'),(13552,8982,'_elementor_edit_mode','builder'),(13553,8982,'_elementor_template_type','wp-page'),(13554,8982,'_elementor_version','3.5.4'),(13555,8982,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13556,8982,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13557,8982,'_elementor_page_assets','a:0:{}'),(13559,8983,'_wp_page_template','default'),(13560,8983,'_elementor_edit_mode','builder'),(13561,8983,'_elementor_template_type','wp-page'),(13562,8983,'_elementor_version','3.5.4'),(13563,8983,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13564,8983,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13565,8983,'_elementor_page_assets','a:0:{}'),(13567,8984,'_wp_page_template','default'),(13568,8984,'_elementor_edit_mode','builder'),(13569,8984,'_elementor_template_type','wp-page'),(13570,8984,'_elementor_version','3.5.4');
INSERT INTO `wp_postmeta` VALUES (13571,8984,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13572,8984,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13573,8984,'_elementor_page_assets','a:0:{}'),(13577,8985,'_wp_page_template','default'),(13578,8985,'_elementor_edit_mode','builder'),(13579,8985,'_elementor_template_type','wp-page'),(13580,8985,'_elementor_version','3.5.4'),(13581,8985,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13582,8985,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13583,8985,'_elementor_page_assets','a:0:{}'),(13585,8986,'_wp_page_template','default'),(13586,8986,'_elementor_edit_mode','builder'),(13587,8986,'_elementor_template_type','wp-page'),(13588,8986,'_elementor_version','3.5.4'),(13589,8986,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d825747\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13590,8986,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13591,8986,'_elementor_page_assets','a:0:{}'),(13593,8987,'_wp_page_template','default'),(13594,8987,'_elementor_edit_mode','builder'),(13595,8987,'_elementor_template_type','wp-page'),(13596,8987,'_elementor_version','3.5.4'),(13597,8987,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13598,8987,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13599,8987,'_elementor_page_assets','a:0:{}'),(13602,8677,'_wp_old_slug','study-in-uk'),(13603,8989,'_wp_page_template','default'),(13604,8989,'_elementor_edit_mode','builder'),(13605,8989,'_elementor_template_type','wp-post'),(13606,8989,'_elementor_version','3.5.3'),(13607,8989,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8524,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\"},{\"id\":8523,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\"},{\"id\":7781,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/11\\/u-blog-02.jpg\"},{\"id\":7525,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\"},{\"id\":7500,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/12\\/h-case1.jpg\"},{\"id\":7416,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\"},{\"id\":7135,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider3.jpg\"},{\"id\":7267,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\"},{\"id\":7099,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider1.jpg\"},{\"id\":7134,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider2.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-youtube-play\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13608,8989,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13609,8989,'_elementor_page_assets','a:0:{}'),(13612,8990,'_wp_page_template','default'),(13613,8990,'_elementor_edit_mode','builder'),(13614,8990,'_elementor_template_type','wp-post'),(13615,8990,'_elementor_version','3.5.4'),(13616,8990,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Gallery\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bf29d4b\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":8524,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\"},{\"id\":8523,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\"},{\"id\":7781,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/11\\/u-blog-02.jpg\"},{\"id\":7525,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\"},{\"id\":7500,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2019\\/12\\/h-case1.jpg\"},{\"id\":7416,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-bg-section4.jpg\"},{\"id\":7135,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider3.jpg\"},{\"id\":7267,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/h-banner1.jpg\"},{\"id\":7099,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider1.jpg\"},{\"id\":7134,\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider2.jpg\"}],\"open_lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13617,8990,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13618,8990,'_elementor_page_assets','a:0:{}'),(13630,8992,'_menu_item_type','custom'),(13631,8992,'_menu_item_menu_item_parent','8953'),(13632,8992,'_menu_item_object_id','8992'),(13633,8992,'_menu_item_object','custom'),(13634,8992,'_menu_item_target',''),(13635,8992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13636,8992,'_menu_item_xfn',''),(13637,8992,'_menu_item_url','#'),(13639,8993,'_menu_item_type','custom'),(13640,8993,'_menu_item_menu_item_parent','8953'),(13641,8993,'_menu_item_object_id','8993'),(13642,8993,'_menu_item_object','custom'),(13643,8993,'_menu_item_target',''),(13644,8993,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13645,8993,'_menu_item_xfn',''),(13646,8993,'_menu_item_url','#'),(13648,8512,'_wp_old_date','2022-02-03'),(13649,8636,'_wp_old_date','2022-02-03'),(13650,8953,'_wp_old_date','2022-02-03'),(13653,8514,'_wp_old_date','2022-02-03'),(13654,8960,'_wp_old_date','2022-02-03'),(13655,8515,'_wp_old_date','2022-02-03'),(13656,8956,'_wp_old_date','2022-02-03'),(13657,8957,'_wp_old_date','2022-02-03'),(13658,8516,'_wp_old_date','2022-02-03'),(13659,8961,'_wp_old_date','2022-02-03'),(13660,8962,'_wp_old_date','2022-02-03'),(13661,8672,'_wp_old_date','2022-02-03'),(13662,8992,'_menu_item_ct_megaprofile','0'),(13663,8992,'_menu_item_ct_icon',''),(13664,8992,'_menu_item_ct_onepage','no-one-page'),(13665,8992,'_menu_item_ct_onepage_offset',''),(13666,8992,'_menu_item_ct_custom_class',''),(13667,8992,'_menu_item_ct_menu_marker',''),(13668,8993,'_menu_item_ct_megaprofile','0'),(13669,8993,'_menu_item_ct_icon',''),(13670,8993,'_menu_item_ct_onepage','no-one-page'),(13671,8993,'_menu_item_ct_onepage_offset',''),(13672,8993,'_menu_item_ct_custom_class',''),(13673,8993,'_menu_item_ct_menu_marker',''),(13674,8994,'_menu_item_type','custom'),(13675,8994,'_menu_item_menu_item_parent','8953'),(13676,8994,'_menu_item_object_id','8994'),(13677,8994,'_menu_item_object','custom'),(13678,8994,'_menu_item_target',''),(13679,8994,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13680,8994,'_menu_item_xfn',''),(13681,8994,'_menu_item_url','#'),(13683,8995,'_menu_item_type','custom'),(13684,8995,'_menu_item_menu_item_parent','8953'),(13685,8995,'_menu_item_object_id','8995'),(13686,8995,'_menu_item_object','custom'),(13687,8995,'_menu_item_target',''),(13688,8995,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13689,8995,'_menu_item_xfn',''),(13690,8995,'_menu_item_url','#'),(13692,8994,'_menu_item_ct_megaprofile','0'),(13693,8994,'_menu_item_ct_icon',''),(13694,8994,'_menu_item_ct_onepage','no-one-page'),(13695,8994,'_menu_item_ct_onepage_offset',''),(13696,8994,'_menu_item_ct_custom_class',''),(13697,8994,'_menu_item_ct_menu_marker',''),(13698,8995,'_menu_item_ct_megaprofile','0'),(13699,8995,'_menu_item_ct_icon',''),(13700,8995,'_menu_item_ct_onepage','no-one-page'),(13701,8995,'_menu_item_ct_onepage_offset',''),(13702,8995,'_menu_item_ct_custom_class',''),(13703,8995,'_menu_item_ct_menu_marker',''),(13704,8512,'_wp_old_date','2022-02-04'),(13705,8636,'_wp_old_date','2022-02-04'),(13706,8953,'_wp_old_date','2022-02-04'),(13707,8992,'_wp_old_date','2022-02-04'),(13708,8993,'_wp_old_date','2022-02-04'),(13709,8994,'_wp_old_date','2022-02-04'),(13710,8995,'_wp_old_date','2022-02-04'),(13711,8514,'_wp_old_date','2022-02-04'),(13712,8960,'_wp_old_date','2022-02-04'),(13713,8515,'_wp_old_date','2022-02-04'),(13714,8956,'_wp_old_date','2022-02-04'),(13715,8957,'_wp_old_date','2022-02-04'),(13716,8516,'_wp_old_date','2022-02-04'),(13717,8961,'_wp_old_date','2022-02-04'),(13718,8962,'_wp_old_date','2022-02-04'),(13719,8672,'_wp_old_date','2022-02-04'),(13720,8997,'_wp_attached_file','2022/02/ad4a67a25bc3732713de694a782d441b.jpg'),(13721,8997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:44:\"2022/02/ad4a67a25bc3732713de694a782d441b.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"ad4a67a25bc3732713de694a782d441b-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:44:\"ad4a67a25bc3732713de694a782d441b-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:44:\"ad4a67a25bc3732713de694a782d441b-640x313.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:44:\"ad4a67a25bc3732713de694a782d441b-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(13722,8998,'_wp_attached_file','2022/02/sm_5b32227ca3eb9.jpg'),(13723,8998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:360;s:4:\"file\";s:28:\"2022/02/sm_5b32227ca3eb9.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"sm_5b32227ca3eb9-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:\"sm_5b32227ca3eb9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"sm_5b32227ca3eb9-360x313.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:313;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:{}}}'),(13724,8174,'_elementor_css','a:6:{s:4:\"time\";i:1644812218;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13725,8779,'_elementor_css','a:7:{s:4:\"time\";i:1644812218;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13727,8999,'_wp_attached_file','2022/02/kindpng_7363083.png'),(13728,8999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1294;s:6:\"height\";i:1295;s:4:\"file\";s:27:\"2022/02/kindpng_7363083.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"kindpng_7363083-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"kindpng_7363083-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kindpng_7363083-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:\"kindpng_7363083-768x769.png\";s:5:\"width\";i:768;s:6:\"height\";i:769;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"kindpng_7363083-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"kindpng_7363083-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(13729,9000,'_wp_attached_file','2022/02/kindpng_1913293.png'),(13730,9000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:441;s:6:\"height\";i:504;s:4:\"file\";s:27:\"2022/02/kindpng_1913293.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"kindpng_1913293-263x300.png\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kindpng_1913293-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"kindpng_1913293-441x313.png\";s:5:\"width\";i:441;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"kindpng_1913293-441x450.png\";s:5:\"width\";i:441;s:6:\"height\";i:450;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:{}}}'),(13731,9001,'_wp_attached_file','2022/02/kindpng_44729.png'),(13732,9001,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:901;s:4:\"file\";s:25:\"2022/02/kindpng_44729.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"kindpng_44729-300x211.png\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"kindpng_44729-1024x721.png\";s:5:\"width\";i:1024;s:6:\"height\";i:721;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"kindpng_44729-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:25:\"kindpng_44729-768x541.png\";s:5:\"width\";i:768;s:6:\"height\";i:541;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"kindpng_44729-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"kindpng_44729-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;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:{}}}'),(13735,9002,'_thumbnail_id','8787'),(13736,9002,'_elementor_edit_mode','builder'),(13737,9002,'_elementor_template_type','wp-post'),(13738,9002,'_elementor_version','3.5.5'),(13739,9002,'_wp_page_template','default'),(13740,9002,'_elementor_data','[{\"id\":\"139a692\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2705b34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2919a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><strong><u>Four Seasons Health Care Now Hiring\\u00a0<\\/u><\\/strong><\\/h4><p><strong>Benefits of the Package:<\\/strong><\\/p><ul><li>Salary band \\u00a316 - \\u00a318 per hour.<\\/li><\\/ul><p><strong>Job Description:<\\/strong><\\/p><ul><li>Maintain accurate, detailed reports and records.<\\/li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.<\\/li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.<\\/li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. \\u00b7\\u00a0<\\/li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. \\u00b7\\u00a0<\\/li><li>To have responsibility for frontline supervision and supervise the care staff. \\u00b7\\u00a0<\\/li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.<\\/li><\\/ul><p><strong>Job Specification:<\\/strong><\\/p><ul><li>Registered Nurse with NMC PIN number required.<\\/li><li>Minimum one year experience in adult care.<\\/li><li>A proven track record of working in a similar adult care environment.<\\/li><li>The ability to ensure that residents\\u2019 needs, wishes and aspirations are acknowledged and met where possible.<\\/li><li>Excellent communication skills.\\u00a0<\\/li><li>Able to interact with residents, their families and members of staff.\\u00a0<\\/li><\\/ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"935b01f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply\",\"link\":{\"url\":\"https:\\/\\/forms.zohopublic.com\\/ealoor\\/form\\/InitialCandidateRegistration\\/formperma\\/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d3116c8\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7eb6e6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3690390\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"4016f47\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"8eaca7f\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"7039263\"}]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(13741,9002,'_elementor_page_assets','a:0:{}'),(13742,9002,'_elementor_css','a:7:{s:4:\"time\";i:1644818463;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13743,9003,'_wp_page_template','default'),(13744,9003,'_elementor_edit_mode','builder'),(13745,9003,'_elementor_template_type','wp-post'),(13746,9003,'_elementor_version','3.5.4'),(13747,9003,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41de97\",\"elType\":\"widget\",\"settings\":{\"menu\":\"home-menu\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"lowercase\"},\"elements\":[],\"widgetType\":\"ct_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13748,9003,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13749,9003,'_elementor_page_assets','a:0:{}'),(13750,9003,'_elementor_css','a:6:{s:4:\"time\";i:1644812219;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:6;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13752,3514,'_elementor_css','a:6:{s:4:\"time\";i:1644819346;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"flaticon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13753,9004,'_menu_item_type','post_type'),(13754,9004,'_menu_item_menu_item_parent','0'),(13755,9004,'_menu_item_object_id','9'),(13756,9004,'_menu_item_object','page'),(13757,9004,'_menu_item_target',''),(13758,9004,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13759,9004,'_menu_item_xfn',''),(13760,9004,'_menu_item_url',''),(13762,9005,'_menu_item_type','post_type'),(13763,9005,'_menu_item_menu_item_parent','0'),(13764,9005,'_menu_item_object_id','26'),(13765,9005,'_menu_item_object','page'),(13766,9005,'_menu_item_target',''),(13767,9005,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13768,9005,'_menu_item_xfn',''),(13769,9005,'_menu_item_url',''),(13771,9006,'_menu_item_type','post_type'),(13772,9006,'_menu_item_menu_item_parent','0'),(13773,9006,'_menu_item_object_id','3514'),(13774,9006,'_menu_item_object','page'),(13775,9006,'_menu_item_target',''),(13776,9006,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(13777,9006,'_menu_item_xfn',''),(13778,9006,'_menu_item_url',''),(13780,9004,'_menu_item_ct_megaprofile','0'),(13781,9004,'_menu_item_ct_icon',''),(13782,9004,'_menu_item_ct_onepage','no-one-page'),(13783,9004,'_menu_item_ct_onepage_offset',''),(13784,9004,'_menu_item_ct_custom_class',''),(13785,9004,'_menu_item_ct_menu_marker',''),(13786,9005,'_menu_item_ct_megaprofile','0'),(13787,9005,'_menu_item_ct_icon',''),(13788,9005,'_menu_item_ct_onepage','no-one-page'),(13789,9005,'_menu_item_ct_onepage_offset',''),(13790,9005,'_menu_item_ct_custom_class',''),(13791,9005,'_menu_item_ct_menu_marker',''),(13792,9006,'_menu_item_ct_megaprofile','0'),(13793,9006,'_menu_item_ct_icon',''),(13794,9006,'_menu_item_ct_onepage','no-one-page'),(13795,9006,'_menu_item_ct_onepage_offset',''),(13796,9006,'_menu_item_ct_custom_class',''),(13797,9006,'_menu_item_ct_menu_marker',''),(13798,9007,'_wp_page_template','default'),(13799,9007,'_elementor_edit_mode','builder'),(13800,9007,'_elementor_template_type','wp-post'),(13801,9007,'_elementor_version','3.5.5'),(13802,9007,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c41de97\",\"elType\":\"widget\",\"settings\":{\"menu\":\"quick-links\",\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13803,9007,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13804,9007,'_elementor_page_assets','a:0:{}'),(13805,9007,'_elementor_css','a:6:{s:4:\"time\";i:1644819281;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:6;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13808,9008,'_wp_page_template','default'),(13809,9008,'_elementor_edit_mode','builder'),(13810,9008,'_elementor_template_type','wp-post'),(13811,9008,'_elementor_version','3.5.5'),(13812,9008,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13813,9008,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13814,9008,'_elementor_page_assets','a:0:{}'),(13815,9008,'_elementor_css','a:6:{s:4:\"time\";i:1644819461;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:6;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13817,9009,'_wp_page_template','default'),(13818,9009,'_elementor_edit_mode','builder'),(13819,9009,'_elementor_template_type','wp-post'),(13820,9009,'_elementor_version','3.5.5'),(13821,9009,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13822,9009,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13823,9009,'_elementor_page_assets','a:0:{}'),(13824,9009,'_elementor_css','a:6:{s:4:\"time\";i:1644819674;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13834,3502,'_elementor_css','a:6:{s:4:\"time\";i:1644918742;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13835,9016,'_elementor_edit_mode','builder'),(13836,9016,'_elementor_template_type','kit'),(13837,9016,'_elementor_version','3.5.3'),(13838,9016,'_elementor_css','a:6:{s:4:\"time\";i:1644812218;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13839,8174,'_wp_page_template','default'),(13840,8174,'_elementor_page_settings','a:1:{s:16:\"site_description\";s:14:\"Changing Lives\";}'),(13844,9020,'_elementor_edit_mode','builder'),(13845,9020,'_elementor_template_type','wp-page'),(13846,9020,'_elementor_version','3.5.4'),(13847,9020,'_wp_page_template','default'),(13848,9020,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13849,9020,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13850,9020,'_elementor_page_assets','a:0:{}'),(13851,9020,'_elementor_css','a:6:{s:4:\"time\";i:1644812996;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:8:\"material\";i:4;s:10:\"flaticonv2\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13852,9021,'_elementor_edit_mode','builder'),(13853,9021,'_elementor_template_type','wp-page'),(13854,9021,'_elementor_version','3.5.4'),(13855,9021,'_wp_page_template','default'),(13856,9021,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients with our capability.\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Some faq for more inquiry\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"FAQ\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13857,9021,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13858,9021,'_elementor_page_assets','a:0:{}'),(13859,9021,'_elementor_css','a:6:{s:4:\"time\";i:1644812996;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:8:\"material\";i:4;s:10:\"flaticonv2\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13860,9022,'_elementor_edit_mode','builder'),(13861,9022,'_elementor_template_type','wp-page'),(13862,9022,'_elementor_version','3.5.4'),(13863,9022,'_wp_page_template','default'),(13864,9022,'_elementor_data','[{\"id\":\"f667c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"0e6f5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e677425\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Business\",\"shortcode\":\"[rev_slider alias=\\\"business\\\" slidertitle=\\\"Business\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"db40e85\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-bg-section7.jpg\",\"id\":7507},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"section-finance4-portfolio\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e0d673\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69bf0ca\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2021\\/04\\/h-case2.jpg\",\"id\":7525},\"source\":[\"ealoor|case-study-category\",\"nursing|case-study-category\"],\"orderby\":\"title\",\"order\":\"asc\",\"_css_classes\":\"case-study\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_case_study_carousel\"}],\"isInner\":false},{\"id\":\"76723bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32,\"margin\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"z_index\":2,\"css_classes\":\"col-offset-right\",\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f5d8a08\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"left\",\"title\":\"Ealoor Group of Companies                                \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-260\",\"isLinked\":false},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6944dea\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-university\",\"library\":\"fa-solid\"},\"title_text\":\"British Council Approved Agent\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d346a89\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fc53e31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-check-square\",\"library\":\"material\"},\"title_text\":\"No Registration Charges\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"40\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"63ee847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"48248a7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-graduation-cap\",\"library\":\"material\"},\"title_text\":\"Guidance on University & Course\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"80\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"9706dde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"931e432\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pencil-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Assistance in the Application Process\",\"list\":[],\"style\":\"style12\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"120\",\"title_space_top\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"d315ce1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E9E9E6\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bb2268e\",\"elType\":\"widget\",\"settings\":{\"style\":\"line-dark1\",\"text\":\"Learn more about us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":{\"value\":\"flaticonv2 flaticonv2-right-arrow\",\"library\":\"flaticonv2\"},\"icon_align\":\"right\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"160\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f1f72fe\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f685eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6318ae5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\",\"id\":8878,\"alt\":\"\",\"source\":\"library\"},\"img_size\":\"full\",\"image_height\":{\"unit\":\"px\",\"size\":306,\"sizes\":[]},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=HWI8Glo-BzY\",\"btn_video_style\":\"style9\",\"video_title\":\"We have <cite>10+<\\/cite> years of experiences\",\"__globals__\":{\"background_overlay\":\"\"}},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"5675b65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40ee65d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we work with our clients .\",\"title_color\":\"#1D1B4C\",\"sub_title\":\"About us\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"583f33b8\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.<\\/p>\",\"text_color\":\"#1F323E\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3675d5d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"386088d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6ced9ac5\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"},\"title_text\":\"British Council Approved Agent\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"list\":[],\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\",\"id\":8971,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3a14e51b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"67fc6fa8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"material zmdi zmdi-badge-check\",\"library\":\"material\"},\"title_text\":\"REC Membership\",\"style\":\"style9\",\"title_color\":\"#1F323E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"desc_color\":\"#696B6D\",\"desc_typography_typography\":\"custom\",\"desc_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"desc_typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_space_right\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_space_top\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"list\":[],\"icon_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_space_top_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_type\":\"image\",\"icon_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\",\"id\":8972,\"alt\":\"\",\"source\":\"library\"},\"title_space_top\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be76292\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9004d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c0deef5\",\"elType\":\"widget\",\"settings\":{\"title_color\":\"#1D1B4C\",\"sub_title\":\"Sucsess Stories\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3af3613f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"316b1024\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"77d43f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"International Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44a8f60\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg\",\"id\":8745,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Neethu Varghese\",\"position\":\"MSc Public Health\",\"description\":\"Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.\",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/shawn.png\",\"id\":8746,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Shawn Biju\",\"position\":\"Diagnostic Radiography\",\"description\":\"Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false},{\"id\":\"5cc9e9c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7831b93\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing Students\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"title_tag\":\"h5\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"52de23ba\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"testimonial\":[{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/vimal_350x350_acf_cropped.png\",\"id\":8740,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Vimal T S\",\"position\":\"RGN |Central Manchester Foundation Trust\",\"description\":\"I am thankful to Nursing Jobs UK \\/ Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, \",\"_id\":\"db6a281\"},{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/himaja.png\",\"id\":8741,\"alt\":\"\",\"source\":\"library\"},\"title\":\"Himaja Pavani\",\"position\":\"RGN | Central Manchester Foundation Trust\",\"description\":\"I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. \",\"_id\":\"d501fe3\"}],\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"autoplay\":\"true\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f0edc4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c717ed5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42b59bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"align\":\"center\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/testimonials-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"048\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d435573\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.83999999999999996891375531049561686813831329345703125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonils\"},\"elements\":[{\"id\":\"1becab51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ed1b34\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"5f98832a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[{\"id\":\"7536ea15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_type\":\"bg\",\"image_height\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-110\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"image_height_tablet\":{\"unit\":\"px\",\"size\":416,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":true},{\"id\":\"157e19e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"393c8654\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients says\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title\":\"Testimonils\",\"sub_title_style\":\"style3\",\"sub_title_color\":\"#02D7F9\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"-9\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_space_bottom_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"44d55a3a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"testimonial\":[{\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Four Seasons Health Care\",\"description\":\"Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\",\"_id\":\"a2426b8\"}],\"position_color\":\"#D9D9D9\",\"description_color\":\"#F3F3F3\",\"col_sm\":\"1\",\"col_md\":\"1\",\"col_lg\":\"1\",\"col_xl\":\"1\",\"infinite\":\"true\",\"arrows\":\"true\",\"_css_classes\":\"carousel-focus1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"},{\"id\":\"61246d34\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ee0f9cc\",\"elType\":\"widget\",\"settings\":{\"arrow_align\":\"start\",\"style\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"arrow-focus1\",\"arrow_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"ct_carousel_arrow\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63d1b0de\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bc51933\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125},\"elements\":[],\"isInner\":false},{\"id\":\"404ff505\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"54bef526\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":99,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"245a25a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ba15271\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78830ca6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true},{\"id\":\"76515732\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":66},\"elements\":[{\"id\":\"2075d4f\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"We\\u2019re here to share latest news and events. \",\"title_color\":\"#0E0E0E\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"sub_title\":\"Latest News\",\"sub_title_style\":\"style10\",\"ct_animate\":\"case-fade-in-up\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3fa4098\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Follow our latest news and thoughts which focuses exclusively on\\u00a0 abroad study.<\\/p>\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"240\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"19399840\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":17},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a4b63ed\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"thumbnail_size\":\"custom\",\"col_md\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"dots_style\":\"dot-style-u8\",\"_css_classes\":\"blog-layout6-custom1\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c814d0b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8373b13\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3dd828c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQs\",\"title_color\":\"#1D1B4C\",\"sub_title_color\":\"#08A4A4\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Rubik\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"500\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.20000000000000017763568394002504646778106689453125,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-8\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6bdffca\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"How can I work as a Registered nurse in the UK ?         \",\"ac_content\":\"<p>At the initial stage of the application process, you need to pass either IELTS\\/OET. For IELTS you will require a minimum score of 7 in all modules....<\\/p>\",\"_id\":\"50bf681\"},{\"ac_title\":\"What will I need to pay for ?        \",\"ac_content\":\"<p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...<\\/p>\",\"_id\":\"807e347\"},{\"ac_title\":\"What will be my pay scale ?  \",\"ac_content\":\"<p>A Band 5, registered nurse salary ranges from \\u00a324,214 to \\u00a330,112 per annum depending on NHS employer. With a private employer, the payment can go f...<\\/p>\",\"_id\":\"5a2466d\"},{\"ac_title\":\"Can I get CBT training materials ?       \",\"ac_content\":\"<p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...<\\/p>\",\"_id\":\"9d79cc7\"}],\"style\":\"style4\",\"ct_accordion_l3\":[]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"7cda746\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cc487be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style9\",\"title\":\"QUICK CONTACT\",\"image_left\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"id\":8524,\"alt\":\"\",\"source\":\"library\"},\"image_right\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c620441\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E9F2FA\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-pricing\"},\"elements\":[{\"id\":\"64cd3c67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"58761c04\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"a90d79a\"},{\"_id\":\"692221f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"198524e\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"6474f1b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1a89053\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"de34257\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3636ee6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"1b935db\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"41afaa0\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"29f4ec3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"d76622b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13865,9022,'_elementor_controls_usage','a:23:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:45;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:45;s:19:\"_inline_size_tablet\";i:24;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:13:\"margin_mobile\";i:4;s:11:\"css_classes\";i:4;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:4;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:25;s:15:\"stretch_section\";i:10;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:13;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:7:\"padding\";i:17;s:6:\"margin\";i:6;s:7:\"z_index\";i:3;s:11:\"css_classes\";i:2;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:8;s:19:\"background_position\";i:8;s:17:\"background_repeat\";i:8;s:15:\"background_size\";i:8;s:16:\"background_color\";i:3;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;s:22:\"background_xpos_tablet\";i:1;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:13:{s:10:\"text_align\";i:9;s:5:\"title\";i:11;s:11:\"title_color\";i:11;s:27:\"title_typography_typography\";i:11;s:26:\"title_typography_font_size\";i:11;s:28:\"title_typography_line_height\";i:11;s:10:\"ct_animate\";i:11;s:18:\"title_space_bottom\";i:9;s:33:\"title_typography_font_size_mobile\";i:9;s:35:\"title_typography_line_height_mobile\";i:9;s:33:\"title_typography_font_size_tablet\";i:1;s:18:\"title_color_mobile\";i:1;s:28:\"title_typography_font_family\";i:2;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:5:\"align\";i:6;s:10:\"text_color\";i:8;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:5;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:10:\"ct_animate\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:24:{s:4:\"text\";i:4;s:4:\"link\";i:2;s:8:\"btn_icon\";i:4;s:14:\"icon_font_size\";i:3;s:16:\"icon_space_right\";i:3;s:5:\"style\";i:2;s:11:\"btn_padding\";i:3;s:17:\"btn_border_radius\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:3;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:2;s:10:\"icon_align\";i:1;s:5:\"align\";i:2;s:12:\"btn_bg_color\";i:2;s:10:\"icon_color\";i:1;s:11:\"btn_display\";i:2;s:11:\"border_type\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:16:\"icon_color_hover\";i:2;s:18:\"btn_bg_color_hover\";i:2;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:12:\"_css_classes\";i:1;s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:4:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;s:16:\"ct_animate_delay\";i:1;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:15:\"content_section\";a:5:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:12:\"counter_icon\";i:4;s:8:\"style_l2\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:3:{s:12:\"number_color\";i:4;s:28:\"number_typography_typography\";i:4;s:27:\"number_typography_font_size\";i:4;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;}s:12:\"section_icon\";a:4:{s:26:\"typography_icon_typography\";i:4;s:25:\"typography_icon_font_size\";i:4;s:10:\"icon_color\";i:4;s:16:\"icon_space_right\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:14:\"_margin_mobile\";i:3;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:12:\"ct_accordion\";i:2;s:5:\"style\";i:1;s:10:\"ct_animate\";i:2;s:15:\"ct_accordion_l3\";i:1;s:14:\"active_section\";i:1;s:8:\"box_icon\";i:1;s:9:\"box_title\";i:1;s:8:\"box_desc\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;s:8:\"_z_index\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"ct_box_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:8:{s:5:\"title\";i:1;s:9:\"sub_title\";i:1;s:12:\"phone_number\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;s:8:\"btn_icon\";i:1;s:11:\"footer_text\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:8:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:7;s:16:\"description_text\";i:3;s:6:\"number\";i:3;s:13:\"selected_icon\";i:4;s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}s:13:\"section_style\";a:4:{s:12:\"ct_animate_t\";i:3;s:12:\"ct_animate_d\";i:3;s:18:\"ct_animate_delay_d\";i:3;s:5:\"style\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:22:\"ct_case_study_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:9:\"box_image\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"ct_pricing_multi\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_list_monthly\";a:5:{s:17:\"tab_title_monthly\";i:1;s:11:\"col_monthly\";i:1;s:15:\"content_monthly\";i:1;s:12:\"pricing_note\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"section_list_year\";a:3:{s:12:\"content_year\";i:1;s:14:\"tab_title_year\";i:1;s:8:\"col_year\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:6:{s:5:\"image\";i:2;s:11:\"image_align\";i:2;s:10:\"ct_animate\";i:1;s:10:\"image_link\";i:1;s:18:\"image_align_tablet\";i:1;s:18:\"image_align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:14:\"thumbnail_size\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:10:\"dots_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:17:\"ct_mailchimp_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:14:\"source_section\";a:1:{s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_mobile\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(13866,9022,'_elementor_page_assets','a:0:{}'),(13867,9022,'_elementor_css','a:6:{s:4:\"time\";i:1644812996;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:8:\"material\";i:4;s:10:\"flaticonv2\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13868,8679,'_elementor_edit_mode','builder'),(13869,8679,'_elementor_template_type','wp-post'),(13870,8679,'_elementor_version','3.5.5'),(13871,9,'_elementor_css','a:6:{s:4:\"time\";i:1645700794;s:5:\"fonts\";a:1:{i:0;s:5:\"Rubik\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:8:\"material\";i:4;s:10:\"flaticonv2\";i:5;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13872,9023,'_wp_page_template','default'),(13873,9023,'_elementor_edit_mode','builder'),(13874,9023,'_elementor_template_type','wp-page'),(13875,9023,'_elementor_version','3.5.4'),(13876,9023,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13877,9023,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13878,9023,'_elementor_page_assets','a:0:{}'),(13879,9023,'_elementor_css','a:6:{s:4:\"time\";i:1644819649;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13880,9024,'_wp_page_template','default'),(13881,9024,'_elementor_edit_mode','builder'),(13882,9024,'_elementor_template_type','wp-page'),(13883,9024,'_elementor_version','3.5.4'),(13884,9024,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13885,9024,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13886,9024,'_elementor_page_assets','a:0:{}'),(13887,9024,'_elementor_css','a:6:{s:4:\"time\";i:1644819649;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13888,9025,'_wp_page_template','default'),(13889,9025,'_elementor_edit_mode','builder'),(13890,9025,'_elementor_template_type','wp-page'),(13891,9025,'_elementor_version','3.5.4'),(13892,9025,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the \\u201cgo-to\\u201d provider for any international nurse looking for an opportunity in the UK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"drop_cap\":\"yes\",\"drop_cap_space\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-standing-waving-outdoors-scaled.jpg\",\"id\":8882,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"image_custom_dimension\":{\"width\":\"400\",\"height\":\"300\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2917662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style7\",\"list\":[{\"title\":\"\",\"content\":\"Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"British Council Approved Agent\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"REC Membership\",\"_id\":\"7341c94\"}],\"column\":\"one-column\",\"description_color\":\"#00AEEF\",\"description_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"279de3e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b2dbaae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"91e8346\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cfa8915\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\" \",\"btn_style\":\"btn-white\",\"desc\":\"In 2002, Ealoor Consultancy UK Ltd, started with a motto of \\u201cChanging lives\\u201d, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/img1_1170x450_acf_cropped.png\",\"id\":8523,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"a09f4b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13c4efd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a1f8292\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">STUDY ABROAD UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63f301a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78359bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">NURSING JOB UK<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-bottom1\",\"title_tag\":\"h6\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"032\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3c6e4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7fed180\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8a2b75\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"839cc6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07a2452\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001014959\\/https:\\/\\/www.nursingjobsuk.co.uk\\/\\\">INTERNATIONAL RECRUITMENT<\\/a>\",\"title_tag\":\"h4\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ca51fc2\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"_id\":\"8b2dc8d\",\"title\":\"OSCE TRAINING    \",\"description\":\"<ul><li>Started the first-ever private OSCE training for nurses<\\/li>\\n<li>Training conducted for NHS Hospitals<\\/li>\\n<li>Over 100 batch of training completed<\\/li>\\n<li>Batch and one to one session conducted every month<\\/li>\\n<li>99% pass rate for all our students<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200925014851\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/osce-training\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"67445fa\",\"title\":\"CBT TRAINING\",\"description\":\"<ul><li>Over 2500 questions and answers available<\\/li>\\n<li>5 days of completely free training trial<\\/li>\\n<li>Mock tests available<\\/li>\\n<li>Most widely used among international nurses<\\/li><\\/ul>\",\"link\":{\"url\":\"https:\\/\\/web.archive.org\\/web\\/20200914151351\\/https:\\/\\/www.nursingjobsuk.co.uk\\/training\\/cbt-online-practice\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"NMC SUPPORT\",\"description\":\"<ul><li>Revalidation Assistance<\\/li>\\n<li>Overseas NMC Registration Assistance<\\/li>\\n<\\/ul>\",\"_id\":\"3883ddb\"}],\"col_sm\":\"1\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"title_color\":\"#00AEEF\",\"title_color_hover\":\"#FFFFFF\",\"desc_color_hover\":\"#FFFFFF\",\"box_bg_color_hover\":\"#00AEEF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"<a href=\\\"https:\\/\\/web.archive.org\\/web\\/20201001121105\\/http:\\/\\/ealoorconsultancy.co.uk\\/\\\">EALOOR STUDY ABROAD<\\/a>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left3\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"2\",\"source\":[\"digital|service-category\"],\"limit\":4,\"col_md\":\"2\",\"item_color\":[],\"num_words\":10},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/cheerful-students-jumping-excitement-scaled.jpg\",\"id\":8877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"WHOM WE RECRUIT?\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a2fd571\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"_id\":\"ad22e6c\",\"content\":\"Registered General Nurses\"},{\"_id\":\"8038925\",\"content\":\"Mental Health Nurses\"},{\"_id\":\"aaf5070\",\"content\":\"Paediatrics Nurses\"},{\"_id\":\"2c29620\",\"content\":\"Community Nurses\"},{\"_id\":\"e57454c\",\"content\":\"Health Visitors\"},{\"_id\":\"58135f2\",\"content\":\"Allied Health Professionals\"},{\"_id\":\"0cf9116\",\"content\":\"Emergency Nurse Practitioners\"},{\"_id\":\"02c1c2a\",\"content\":\"Paramedics\"},{\"_id\":\"674c3ad\",\"content\":\"GP\\u2019s\"},{\"_id\":\"e42f2d0\",\"content\":\"Radiographers \"}],\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"item_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c9263b0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"592959c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cc73936\",\"elType\":\"widget\",\"settings\":{\"text_align\":\"center\",\"sub_title\":\"OUR CLIENTS\",\"sub_title_color\":\"#08A4A4\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"143ec5a\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\",\"id\":8924,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\",\"id\":8925,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\",\"id\":8926,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\",\"id\":8927,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\",\"id\":8928,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"41e55d9\"},{\"_id\":\"5830fe7\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\",\"id\":8929,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"a34b44b\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\",\"id\":8930,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"3a172b8\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\",\"id\":8931,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"f7b4da6\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\",\"id\":8932,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"218ad9f\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\",\"id\":8933,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"cce7ae5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\",\"id\":8934,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"0dfa682\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\",\"id\":8935,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5e14645\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\",\"id\":8936,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"70d9d0d\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\",\"id\":8937,\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"5477bbd\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\",\"id\":8938,\"alt\":\"\",\"source\":\"library\"}}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":3000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style2\",\"dots\":\"true\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(13893,9025,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:15:\"display_section\";a:1:{s:9:\"num_words\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(13894,9025,'_elementor_page_assets','a:0:{}'),(13895,9025,'_elementor_css','a:6:{s:4:\"time\";i:1644819649;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13896,26,'_elementor_css','a:6:{s:4:\"time\";i:1645700888;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13897,8786,'_elementor_css','a:7:{s:4:\"time\";i:1645709624;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(13909,9028,'_wp_page_template','default'),(13910,9028,'_elementor_edit_mode','builder'),(13911,9028,'_elementor_template_type','wp-post'),(13912,9028,'_elementor_version','3.5.5'),(13913,9028,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"39\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_gradient_type\":\"radial\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2019\\/10\\/bg-footer1.jpg\",\"id\":7046}},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol1\"},\"elements\":[{\"id\":\"1b051d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/logo-11.png\",\"id\":8518,\"alt\":\"\",\"source\":\"library\"},\"image_max_height\":{\"unit\":\"px\",\"size\":61,\"sizes\":[]},\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.<\\/p>\",\"text_color\":\"#161616\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"1233bb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"About Us\",\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol2\"},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletters\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a4065e7\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"efecee9\",\"elType\":\"widget\",\"settings\":{\"style\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"},{\"id\":\"e63c69c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"216e40a\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"1c902d4\",\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4d13b2e\",\"ct_icon\":{\"value\":\"material zmdi zmdi-twitter\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol3\"},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official Info:\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"9ac4594\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"+44 161 456 7166, 0484 4017565 Mob No: +91 9995399366\\/ +91 9995205566 WhatsApp: +91 9995377366\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"info@ealoorconsultancy.co.uk\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"65718c1\"}],\"content_color\":\"#666666\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Poppins\",\"icon_color\":\"#007EF2\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"footercol4\"},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quik Links\",\"title_color\":\"#2B3086\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"a425299\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"color\":\"#2B3086\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"61a546e\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"_id\":\"bea3b32\",\"text\":\"Home\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"a636ff0\",\"text\":\"About Us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"4dc0979\",\"text\":\"Contact us\",\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/index.php\\/contact-v-4\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#0045AC\",\"padding\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"structure\":\"20\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2021<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/amaeka.com\\/\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">Amaeka Technologies<\\/a>\",\"align\":\"left\",\"text_color\":\"#FFFFFFAB\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_font_family\":\"Roboto\",\"link_typography_typography\":\"custom\",\"link_color_hover\":\"#FFFFFF\",\"link_color\":\"#FFFFFFAB\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"ce0a96a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5b59fc\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"_id\":\"0f65f04\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/EaloorStudyAbroad\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"ct_icon\":{\"value\":\"material zmdi zmdi-linkedin\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/company\\/ealoor-studyabroad-uk-ltd\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"856b98c\"},{\"_id\":\"0465713\",\"ct_icon\":{\"value\":\"material zmdi zmdi-instagram\",\"library\":\"material\"},\"icon_link\":{\"url\":\"https:\\/\\/www.instagram.com\\/ealoor_study_abroad\\/?hl=en\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FFFFFF\",\"align\":\"right\",\"icon_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false}]'),(13914,9028,'_elementor_controls_usage','a:9:{s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:16:\"image_max_height\";i:1;s:10:\"image_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:11:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:26:\"link_typography_typography\";i:2;s:5:\"align\";i:1;s:22:\"typography_font_family\";i:1;s:16:\"link_color_hover\";i:1;s:10:\"link_color\";i:1;s:12:\"align_mobile\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:6:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:10:\"icon_color\";i:1;s:28:\"content_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_tablet\";i:4;s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:6:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:9:{s:4:\"menu\";i:2;s:5:\"style\";i:2;s:10:\"link_color\";i:2;s:16:\"link_color_hover\";i:2;s:16:\"line_color_hover\";i:2;s:26:\"link_typography_typography\";i:2;s:27:\"link_typography_font_family\";i:2;s:25:\"link_typography_font_size\";i:2;s:10:\"item_space\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:24:\"background_gradient_type\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_image\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:7:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;s:5:\"align\";i:1;s:14:\"icon_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}}'),(13915,9028,'_elementor_page_assets','a:0:{}'),(13916,9028,'_elementor_css','a:6:{s:4:\"time\";i:1644820025;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13917,20,'_elementor_css','a:6:{s:4:\"time\";i:1646197703;s:5:\"fonts\";a:2:{i:0;s:7:\"Poppins\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"material\";i:3;s:8:\"fa-solid\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13978,123,'_elementor_css','a:6:{s:4:\"time\";i:1647243923;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13979,129,'_elementor_css','a:6:{s:4:\"time\";i:1647243945;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13980,129,'_elementor_page_assets','a:0:{}'),(13981,127,'_elementor_css','a:6:{s:4:\"time\";i:1647243948;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(13982,127,'_elementor_page_assets','a:0:{}'),(13983,9037,'_wp_attached_file','2022/01/cropped-logo-11.png'),(13984,9037,'_wp_attachment_context','site-icon'),(13985,9037,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2022/01/cropped-logo-11.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-logo-11-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:27:\"cropped-logo-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"cropped-logo-11-512x313.png\";s:5:\"width\";i:512;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"cropped-logo-11-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:27:\"cropped-logo-11-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:27:\"cropped-logo-11-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:27:\"cropped-logo-11-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:25:\"cropped-logo-11-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:{}}}'),(13986,9038,'_wp_attached_file','2022/01/cropped-logo-11-1.png'),(13987,9038,'_wp_attachment_context','custom-logo'),(13988,9038,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:87;s:4:\"file\";s:29:\"2022/01/cropped-logo-11-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-logo-11-1-150x87.png\";s:5:\"width\";i:150;s:6:\"height\";i:87;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:{}}}');
/*!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=9039 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 (9,1,'2019-10-29 10:04:28','2019-10-29 10:04:28','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"\">Study Abroad UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-abroad-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients .\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n            <img width=\"673\" height=\"278\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                British Council Approved Agent            </h3>\n            <img width=\"1104\" height=\"320\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\">\n                                            Read more                                        \n                                    </a>\n        <h3 data-wow-delay=\"ms\">\n            FAQs\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.5\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','publish','closed','closed','','home','','','2022-02-24 11:04:54','2022-02-24 11:04:54','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=9',0,'page','',0),(20,1,'2019-10-30 03:38:33','2019-10-30 03:38:33','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy\">\n                                                                                                                                Home                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">\n                                                                                                                                About Us                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">\n                                                                                                                                Contact us                                                                    </a>\n                </li>\n            </ul>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"https://www.facebook.com/EaloorStudyAbroad\">\n                                                        </a>\n                                                <a href=\"https://www.linkedin.com/company/ealoor-studyabroad-uk-ltd/\">\n                                                        </a>\n                                                <a href=\"https://www.instagram.com/ealoor_study_abroad/?hl=en\">\n                                                        </a>','Footer v.1','','publish','closed','closed','','footer-1','','','2022-03-02 05:08:11','2022-03-02 05:08:11','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=footer&#038;p=20',0,'footer','',0),(26,1,'2019-10-30 08:04:23','2019-10-30 08:04:23','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n                        <img width=\"2560\" height=\"1707\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-scaled.jpg\" alt=\"\" />            		\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','publish','closed','closed','','about','','','2022-02-24 11:07:57','2022-02-24 11:07:57','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=26',0,'page','',0),(28,1,'2019-10-30 08:05:01','2019-10-30 08:05:01','Team\n	    <h3>\n                We draw on our global network to assemble a team of experts.    </h3>\n		We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.		\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-07\" title=\"testimonial-07\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Donald Johnson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Jewel D Smith                		        </h3>\n                		        Executive Director\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-02.jpg\" width=\"100\" height=\"100\" alt=\"team-02\" title=\"team-02\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Alan Smith                		        </h3>\n                		        Managing Director\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-03.jpg\" width=\"100\" height=\"100\" alt=\"team-03\" title=\"team-03\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Brad Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-06\" title=\"testimonial-06\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Senior Director\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-04.jpg\" width=\"100\" height=\"100\" alt=\"team-04\" title=\"team-04\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Asistant Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-05-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-05\" title=\"testimonial-05\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-09\" title=\"testimonial-09\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Details</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team','','publish','closed','closed','','team','','','2019-10-30 08:05:01','2019-10-30 08:05:01','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=28',0,'page','',0),(30,1,'2019-10-30 08:05:16','2019-10-30 08:05:16','FAQ\n	    <h3>\n        You can learn more from our asked questions    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Will membership plans be charged automatically?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Where can I find out about funding?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Can I get a free trial before I purchase?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n	    <h3>\n        Still have you any problem  for solutions?    </h3>\n		For any inquiries relating to my  Retail and Leadership\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.		\n        <h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f1615-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1615\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1615-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<label>First name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your first name\" />\n<label>Last name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your last name\" />\n<label>Select a subject to get help*</label><select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Select a subject\">Select a subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<label>Your mail address*</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type mail address\" />\n<label>Message*</label><textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type message...\"></textarea>\n<button type=\"submit\">Submit now</button>\n</form>        \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','FAQ','','publish','closed','closed','','faq','','','2019-10-30 08:05:16','2019-10-30 08:05:16','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=30',0,'page','',0),(32,1,'2019-10-30 08:05:37','2019-10-30 08:05:37','Pricing\n	    <h3>\n        We’re a global stakeholder relations and consultancy.    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\nconnection, we create platforms.		\n                Monthly\n                Yearly Save 20%\n                    <style>.elementor-1214 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                    <style>.elementor-1217 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Pricing','','publish','closed','closed','','pricing','','','2019-10-30 08:05:37','2019-10-30 08:05:37','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=32',0,'page','',0),(91,1,'2019-11-01 08:53:47','2019-11-01 08:53:47','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\nReply-To: [your-email]\n\n\n\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Main Contact Form','','publish','closed','closed','','contact-form-1','','','2019-11-01 08:53:47','2019-11-01 08:53:47','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=91',0,'wpcf7_contact_form','',0),(123,1,'2019-11-02 02:32:13','2019-11-02 02:32:13','Pricing\n	    <h3>\n        Learn something more from our blog    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                            <ul>\n                                                                            <li>November 4, 2018</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Carousel','','publish','closed','closed','','blog-carousel','','','2019-11-02 02:32:13','2019-11-02 02:32:13','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=123',0,'page','',0),(125,1,'2019-11-02 02:32:23','2019-11-02 02:32:23','<a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Left','','publish','closed','closed','','blog-grid-2-columns-sidebar-left','','','2019-11-02 02:32:23','2019-11-02 02:32:23','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=125',0,'page','',0),(127,1,'2019-11-02 02:32:36','2019-11-02 02:32:36','<a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Right','','publish','closed','closed','','blog-grid-2-columns-sidebar-right','','','2019-11-02 02:32:36','2019-11-02 02:32:36','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=127',0,'page','',0),(129,1,'2019-11-02 02:32:56','2019-11-02 02:32:56','Our Service area\n	    <h3>\n                        Learn something more from our blog                    \n    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Grid 3 Columns','','publish','closed','closed','','blog-grid-3-columns','','','2019-11-02 02:32:56','2019-11-02 02:32:56','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=129',0,'page','',0),(132,1,'2019-11-02 02:33:10','2019-11-02 02:33:10','','Blog Standard','','publish','closed','closed','','blog-standard','','','2019-11-02 02:33:10','2019-11-02 02:33:10','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=132',0,'page','',0),(134,1,'2019-11-02 02:33:24','2019-11-02 02:33:24','','Blog Standard Left Sidebar','','publish','closed','closed','','blog-standard-left-sidebar','','','2019-11-02 02:33:24','2019-11-02 02:33:24','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=134',0,'page','',0),(136,1,'2019-11-02 02:33:37','2019-11-02 02:33:37','','Blog Standard Without Sidebar','','publish','closed','closed','','blog-standard-without-sidebar','','','2019-11-02 02:33:37','2019-11-02 02:33:37','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=136',0,'page','',0),(161,1,'2019-11-05 02:32:39','2019-11-05 02:32:39','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery columns=\"2\" link=\"file\" size=\"full\" ids=\"1557,1556\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','You can use it for any kind website like.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','draft','open','open','','you-can-use-it-for-any-kind-website-like','','','2022-02-14 06:06:13','2022-02-14 06:06:13','',0,'https://demo.casethemes.net/consultio-finance4/?p=161',0,'post','',0),(237,1,'2019-11-09 02:05:09','2019-11-09 02:05:09','','author-01','','inherit','open','closed','','author-01','','','2019-11-09 02:05:09','2019-11-09 02:05:09','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/author-01-1.jpg',0,'attachment','image/jpeg',0),(238,1,'2019-11-09 02:05:10','2019-11-09 02:05:10','','author-02','','inherit','open','closed','','author-02','','','2019-11-09 02:05:10','2019-11-09 02:05:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/author-02-1.jpg',0,'attachment','image/jpeg',0),(362,1,'2019-11-11 01:50:45','2019-11-11 01:50:45','<h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n				<h3>Ronald Dumple</h3>\n				Web Designer\n		<ul>\n							<li>info@consulio.com </li>\n										<li>+123 (4567) 890</li>\n										<li>380 St Kilda Road, Melbourne VIC 3004, Australia</li>\n					</ul>\n					<a href=\"https://demo.casethemes.net/consultio-finance4/contact/\">Appionment</a>\n								            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n		Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. 		\n        <h3>\n            Expert team member        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n        <h3>\n            24/7 Customer support        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team Details','','publish','closed','closed','','team-details','','','2019-11-11 01:50:45','2019-11-11 01:50:45','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=362',0,'page','',0),(367,1,'2019-11-11 02:18:04','2019-11-11 02:18:04','<h3>\n                We have many reviews from our satisfied clients.    </h3>\n		It’s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.		\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Kathleen Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Van Hunter                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Macquarie Telecom                            </h3>\n                            Leadership Group\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Fred L Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Carolyn Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Pamela Johnson                            </h3>\n                            Leadership Group\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials','','publish','closed','closed','','testimonials','','','2019-11-11 02:18:04','2019-11-11 02:18:04','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=367',0,'page','',0),(397,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-01','','inherit','open','closed','','testimonial-01','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-01.jpg',0,'attachment','image/jpeg',0),(398,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-02','','inherit','open','closed','','testimonial-02','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-02-1.jpg',0,'attachment','image/jpeg',0),(399,1,'2019-11-11 07:30:41','2019-11-11 07:30:41','','testimonial-03','','inherit','open','closed','','testimonial-03','','','2019-11-11 07:30:41','2019-11-11 07:30:41','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-03-1.jpg',0,'attachment','image/jpeg',0),(400,1,'2019-11-11 07:30:42','2019-11-11 07:30:42','','testimonial-04','','inherit','open','closed','','testimonial-04','','','2019-11-11 07:30:42','2019-11-11 07:30:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-04.jpg',0,'attachment','image/jpeg',0),(401,1,'2019-11-11 07:30:43','2019-11-11 07:30:43','','testimonial-05','','inherit','open','closed','','testimonial-05','','','2019-11-11 07:30:43','2019-11-11 07:30:43','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-05.jpg',0,'attachment','image/jpeg',0),(402,1,'2019-11-11 07:30:44','2019-11-11 07:30:44','','testimonial-06','','inherit','open','closed','','testimonial-06','','','2019-11-11 07:30:44','2019-11-11 07:30:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg',0,'attachment','image/jpeg',0),(407,1,'2019-11-11 08:33:51','2019-11-11 08:33:51','Services                                \n	    <h3 data-wow-delay=\"ms\">\n            We position our clients at the forefront of their field by advancing an agenda.\n            </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"update-service-01\" title=\"update-service-01\" />                                \n                                                                                                                            <h3>Social Media Marketing</h3>\n                                                We understand the importance of approaching each work integrally and believe in the power of simple and easy...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/social-media-marketing/\">Social Media Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/social-media-marketing/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-541x600.jpg\" width=\"541\" height=\"600\" alt=\"update-service-02\" title=\"update-service-02\" />                                \n                                                                                                                            <h3>Content Marketing</h3>\n                                                Your logo is the very heart of your identity, let our designers deliver the perfect & dreamy design, make a...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\">Content Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-541x600.jpg\" width=\"541\" height=\"600\" alt=\"update-blog3\" title=\"update-blog3\" />                                \n                                                                                                                            <h3>SEO Optimization</h3>\n                                                What separates mori from all other web design agencies is ability to offer the most Friendly Experience you can...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\">SEO Optimization</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                            <h3>Web Development</h3>\n                                                Increase social reach and productivity with our App Directory, a collection of famous applications like...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\">Web Development</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/gallery-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"gallery-05\" title=\"gallery-05\" />                                \n                                                                                                                            <h3>Media Promotion</h3>\n                                                Rounding up a bunch of specific designs & talking about the merits of each is perfect way to find common ground...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/media-promotion/\">Media Promotion</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/media-promotion/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                                                                            <h3>Penalty Recovery</h3>\n                                                At its core, every brand has something special to reveal something that inspires people. We are an agency...                                            \n                                                                            <h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/penalty-recovery/\">Penalty Recovery</a>\n                                                                                    </h3>\n                                                                                            <a href=\"https://demo.casethemes.net/consultio-finance4/service/penalty-recovery/\">+</a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Services v.1','','publish','closed','closed','','services-v-1','','','2019-11-11 08:33:51','2019-11-11 08:33:51','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=407',0,'page','',0),(409,1,'2019-11-11 08:37:45','2019-11-11 08:37:45','Services\n	    <h3>\n                        We position our clients at the forefront of their field by advancing an agenda.                    \n            </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-01-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-service-01\" title=\"update-service-01\" />                                \n                                                                            <h3>Financial Limit</h3>\n                                                                                    <h3>Financial Limit</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/financial-limit/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-service-02\" title=\"update-service-02\" />                                \n                                                                            <h3>Financial Growth</h3>\n                                                                                    <h3>Financial Growth</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/financial-growth/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-blog3\" title=\"update-blog3\" />                                \n                                                                            <h3>Tax Management</h3>\n                                                                                    <h3>Tax Management</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/tax-management/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                            <h3>Customer Experience</h3>\n                                                                                    <h3>Customer Experience</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/customer-experience/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/gallery-05-450x450.jpg\" width=\"450\" height=\"450\" alt=\"gallery-05\" title=\"gallery-05\" />                                \n                                                                            <h3>Private Equity</h3>\n                                                                                    <h3>Private Equity</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/private-equity/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                            <h3>Automotive &#038; Mobility</h3>\n                                                                                    <h3>Automotive &#038; Mobility</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-finance4/service/automotive-mobility/\">\n                                                    Read more                                                </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','Services v.2','','publish','closed','closed','','services-v-2','','','2019-11-11 08:37:45','2019-11-11 08:37:45','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=409',0,'page','',0),(415,1,'2019-11-11 08:40:33','2019-11-11 08:40:33','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2019-11-11 08:40:33','2019-11-11 08:40:33','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=415',0,'page','',0),(417,1,'2019-11-11 08:41:02','2019-11-11 08:41:02','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Masonry','','publish','closed','closed','','portfolio-masonry','','','2019-11-11 08:41:02','2019-11-11 08:41:02','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=417',0,'page','',0),(446,1,'2020-03-11 09:21:33','2020-03-11 09:21:33','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Content Marketing','','publish','closed','closed','','content-marketing','','','2020-03-11 09:21:33','2020-03-11 09:21:33','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=446',0,'service','',0),(448,1,'2020-03-11 09:22:21','2020-03-11 09:22:21','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Tax Consulting','','publish','closed','closed','','tax-consulting','','','2020-03-11 09:22:21','2020-03-11 09:22:21','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=448',0,'service','',0),(483,1,'2019-11-12 02:30:38','2019-11-12 02:30:38','<a data-elementor-open-lightbox=\"\" href=\"https://demo.casethemes.net/consultio-marketing/\">\n							<img width=\"607\" height=\"160\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/logo-footer.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/logo-footer.png 607w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/logo-footer-300x79.png 300w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/logo-footer-600x158.png 600w\" sizes=\"(max-width: 607px) 100vw, 607px\" />								</a>\n	    <h3>\n                        One solution for all kinds of Consulting <cite>business</cite>                    \n    </h3>\n		Consultio is a responsive corporate, business & financial services WordPress theme. It is suitable for all business & corporate websites. 		\n    <a href=\"https://themeforest.net/cart/add_items?ref=case-themes&amp;item_ids=25376496\" target=\"_blank\" rel=\"noopener noreferrer\">\n                Purchase Now!\n    </a>\n    <a href=\"#demos\">\n                View Demos\n    </a>\n		Creat a successful website		\n	    <h3>\n                        06+ Awesome Demos                    \n    </h3>\n		Consultio is a Consulting, Finance &amp; Business Theme. It is a clean and modern Business design. You can use it for any kind website like consultancy, Adviser, Business, Consultant, Corporate, Finance, Financiall.		\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/demo1.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>FINANCE CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/demo2.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio-business/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>BUSINESS CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/demo3.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio-law/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>LAW CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/demo4.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio-startup/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    	<h3>Consultio - <cite>STARTUP CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/01/demo7.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio-it/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>NEW</label>\n	    	<h3>Consultio - <cite>IT SOLUTION</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/01/demo8.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"http://demo.casethemes.net/consultio-tax/\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>New</label>\n	    	<h3>Consultio - <cite>TAX CONSULTING</cite></h3>\n	    	<img width=\"800\" height=\"1024\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/demo9.jpg\" alt=\"\" />	    	\n	    		    		<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">View now</a>\n	    		    					<label>Coming Soon</label>\n	    	<h3>Consultio - <cite>HUMAN RESOURCE</cite></h3>\n	    <h3>\n                        # Fully Responsive and Retina Ready                    \n    </h3>\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/devices.png\" title=\"\" alt=\"\" />											\n										<img width=\"937\" height=\"400\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-devices.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-devices.png 937w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-devices-300x128.png 300w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-devices-768x328.png 768w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-devices-600x256.png 600w\" sizes=\"(max-width: 937px) 100vw, 937px\" />											\n	    <h3>\n                        Features of Our Theme                    \n    </h3>\n		Consultio allows you to create beautiful website with some awesome features. We have built this theme as user friendly and we have made by Elementor.		\n            <img width=\"35\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-01.png\" alt=\"\" />        \n        <h3>\n            1 Click Demo Install        </h3>\n        This works by importing wordpress content, widgets and theme options.\n            <img width=\"49\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-02.png\" alt=\"\" />        \n        <h3>\n            Elementor        </h3>\n        By Elementor, the developers can find the easy way to work on theme.\n            <img width=\"115\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-03.png\" alt=\"\" />        \n        <h3>\n            Redux Framework        </h3>\n        Redux is a simple, truly extensible options framework for WordPress Theme. \n            <img width=\"82\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-04.png\" alt=\"\" />        \n        <h3>\n            Contact Form 7         </h3>\n        The extension can be of great help to embrace fast online payment facility. \n            <img width=\"49\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-05.png\" alt=\"\" />        \n        <h3>\n            Slider Revolution        </h3>\n        It includes Revolution Slider for easy slide building. $49 value FREE! \n            <img width=\"55\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-06.png\" alt=\"\" />        \n        <h3>\n            SEO Friendly         </h3>\n        Theme perfectly supports search engine algorithms. Fully SEO Friendly. \n            <img width=\"59\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-07.png\" alt=\"\" />        \n        <h3>\n            Great Support!         </h3>\n        Get a high quality support service with us, Submit a ticket to our form. \n            <img width=\"65\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/feature-icon-08.png\" alt=\"\" />        \n        <h3>\n            Fully Responsive         </h3>\n        Fully responsive, retina ready created for all types of devices.\n										<img width=\"1921\" height=\"573\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer.png 1921w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer-300x89.png 300w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer-1024x305.png 1024w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer-768x229.png 768w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer-1536x458.png 1536w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/landing-footer-600x179.png 600w\" sizes=\"(max-width: 1921px) 100vw, 1921px\" />											\n			<h2>Thanks a lot!</h2>','Landing','','publish','closed','closed','','landing','','','2019-11-12 02:30:38','2019-11-12 02:30:38','',0,'https://demo.casethemes.net/consultio-marketing/?page_id=483',0,'page','',0),(569,1,'2019-11-13 04:03:18','2019-11-13 04:03:18','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" title=\"theme-12\" alt=\"theme-12\" />											\n	    <h3>\n        Fund Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Fund Management','','publish','closed','closed','','fund-management','','','2019-11-13 04:03:18','2019-11-13 04:03:18','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=569',0,'portfolio','',0),(571,1,'2019-11-13 04:03:41','2019-11-13 04:03:41','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-09-ohk3077rf0lvs4nd6630m24ytyj2dcwzop01ofa81y.jpg\" title=\"theme-09\" alt=\"theme-09\" />											\n	    <h3>\n        Financial Analysis    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Financial Analysis','','publish','closed','closed','','financial-analysis','','','2019-11-13 04:03:41','2019-11-13 04:03:41','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=571',0,'portfolio','',0),(573,1,'2019-11-13 04:04:03','2019-11-13 04:04:03','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" title=\"theme-07\" alt=\"theme-07\" />											\n	    <h3>\n        Market Expansion    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Market Expansion','','publish','closed','closed','','market-expansion','','','2019-11-13 04:04:03','2019-11-13 04:04:03','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=573',0,'portfolio','',0),(575,1,'2019-11-13 04:04:21','2019-11-13 04:04:21','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-06-ohk3144427ux2hbku2ayjbu3mg0wurjlh7u1h3xg06.jpg\" title=\"theme-06\" alt=\"theme-06\" />											\n	    <h3>\n        Revenue Growth    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Revenue Growth','','publish','closed','closed','','revenue-growth','','','2019-11-13 04:04:21','2019-11-13 04:04:21','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=575',0,'portfolio','',0),(577,1,'2019-11-13 04:04:45','2019-11-13 04:04:45','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-05-ohk2zwvjbu7q8f2dujm4cmqwapy10orxz9tpedpjye.jpg\" title=\"theme-05\" alt=\"theme-05\" />											\n	    <h3>\n        Court Imperial    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Court Imperial','','publish','closed','closed','','court-imperial','','','2019-11-13 04:04:45','2019-11-13 04:04:45','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=577',0,'portfolio','',0),(579,1,'2019-11-13 04:05:06','2019-11-13 04:05:06','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-04-ohk2zu20rc3v9l6hb0e8n5giikbxdlgqyvv8yjtqh2.jpg\" title=\"theme-04\" alt=\"theme-04\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2020\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.consultio.com\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Data Analytics','','publish','closed','closed','','data-analytics','','','2019-11-13 04:05:06','2019-11-13 04:05:06','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=579',0,'portfolio','',0),(581,1,'2019-11-13 04:05:24','2019-11-13 04:05:24','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-03-ohk2zyr7piaavmznjkfdhm9thhorg2zenj4ocxmrly.jpg\" alt=\"theme-03\" />\n<h3>Chan Agency</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Chan Agency','','publish','closed','closed','','chan-agency','','','2019-11-13 04:05:24','2019-11-13 04:05:24','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=581',0,'portfolio','',0),(583,1,'2019-12-17 04:05:46','2019-12-17 04:05:46','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" alt=\"theme-01\" />\n<h3>Digital Analysis</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Finance Strategy','','publish','closed','closed','','finance-strategy','','','2019-12-17 04:05:46','2019-12-17 04:05:46','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=583',0,'portfolio','',0),(645,1,'2020-02-13 07:57:41','2020-02-13 07:57:41','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Insurance Services','','publish','closed','closed','','insurance-services','','','2020-02-13 07:57:41','2020-02-13 07:57:41','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=645',0,'service','',0),(647,1,'2020-02-13 07:58:38','2020-02-13 07:58:38','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Financial Services','','publish','closed','closed','','financial-services','','','2020-02-13 07:58:38','2020-02-13 07:58:38','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=647',0,'service','',0),(649,1,'2020-02-13 07:59:06','2020-02-13 07:59:06','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Penalty Recovery','','publish','closed','closed','','penalty-recovery','','','2020-02-13 07:59:06','2020-02-13 07:59:06','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=649',0,'service','',0),(651,1,'2020-02-13 08:00:23','2020-02-13 08:00:23','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Media Promotion','','publish','closed','closed','','media-promotion','','','2020-02-13 08:00:23','2020-02-13 08:00:23','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=651',0,'service','',0),(748,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','','Shop','','publish','closed','closed','','shop','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-finance4/shop/',0,'page','',0),(749,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-finance4/cart/',0,'page','',0),(750,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-finance4/checkout/',0,'page','',0),(751,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-finance4/my-account/',0,'page','',0),(783,1,'2019-11-15 07:35:57','2019-11-15 07:35:57','[yith_wcwl_wishlist]','Shop Wishlist','','publish','closed','closed','','shop-wishlist','','','2019-11-15 07:35:57','2019-11-15 07:35:57','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=783',0,'page','',0),(997,1,'2019-11-23 16:18:31','2019-11-23 16:18:31','','client-01','','inherit','open','closed','','client-01','','','2019-11-23 16:18:31','2019-11-23 16:18:31','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png',0,'attachment','image/png',0),(998,1,'2019-11-23 16:18:32','2019-11-23 16:18:32','','client-02','','inherit','open','closed','','client-02','','','2019-11-23 16:18:32','2019-11-23 16:18:32','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png',0,'attachment','image/png',0),(999,1,'2019-11-23 16:18:33','2019-11-23 16:18:33','','client-03','','inherit','open','closed','','client-03','','','2019-11-23 16:18:33','2019-11-23 16:18:33','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png',0,'attachment','image/png',0),(1000,1,'2019-11-23 16:18:34','2019-11-23 16:18:34','','client-04','','inherit','open','closed','','client-04','','','2019-11-23 16:18:34','2019-11-23 16:18:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png',0,'attachment','image/png',0),(1214,1,'2019-11-25 12:06:00','2019-11-25 12:06:00','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Month','','publish','closed','closed','','pricing-month','','','2019-11-25 12:06:00','2019-11-25 12:06:00','',0,'https://demo.casethemes.net/consultio-finance4/?elementor_library=pricing-month',0,'elementor_library','',0),(1217,1,'2019-11-25 12:06:13','2019-11-25 12:06:13','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ year\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Year','','publish','closed','closed','','pricing-year','','','2019-11-25 12:06:13','2019-11-25 12:06:13','',0,'https://demo.casethemes.net/consultio-finance4/?elementor_library=pricing-year',0,'elementor_library','',0),(1383,1,'2019-11-27 01:55:00','2019-11-27 01:55:00','','No Footer','','publish','closed','closed','','no-footer','','','2019-11-27 01:55:00','2019-11-27 01:55:00','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=footer&amp;p=1383',0,'footer','',0),(1512,1,'2019-11-30 07:23:08','2019-11-30 07:23:08','','bg-page-title','','inherit','open','closed','','bg-page-title-2','','','2019-11-30 07:23:08','2019-11-30 07:23:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/bg-page-title-1.jpg',0,'attachment','image/jpeg',0),(1516,1,'2019-11-30 07:31:11','2019-11-30 07:31:11','','bg-footer1','','inherit','open','closed','','bg-footer1-2','','','2019-11-30 07:31:11','2019-11-30 07:31:11','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/10/bg-footer1-1.png',0,'attachment','image/png',0),(1522,1,'2019-11-30 07:49:44','2019-11-30 07:49:44','','app-store','','inherit','open','closed','','app-store','','','2019-11-30 07:49:44','2019-11-30 07:49:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/10/app-store.png',0,'attachment','image/png',0),(1524,1,'2019-11-30 07:54:04','2019-11-30 07:54:04','','google-play','','inherit','open','closed','','google-play','','','2019-11-30 07:54:04','2019-11-30 07:54:04','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/10/google-play.png',0,'attachment','image/png',0),(1530,1,'2019-12-02 02:49:09','2019-12-02 02:49:09','','theme-01','','inherit','open','closed','','theme-01','','','2019-12-02 02:49:09','2019-12-02 02:49:09','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01.jpg',0,'attachment','image/jpeg',0),(1531,1,'2019-12-02 02:49:13','2019-12-02 02:49:13','','theme-02','','inherit','open','closed','','theme-02','','','2019-12-02 02:49:13','2019-12-02 02:49:13','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-02.jpg',0,'attachment','image/jpeg',0),(1532,1,'2019-12-02 02:49:17','2019-12-02 02:49:17','','theme-03','','inherit','open','closed','','theme-03','','','2019-12-02 02:49:17','2019-12-02 02:49:17','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-03.jpg',0,'attachment','image/jpeg',0),(1533,1,'2019-12-02 02:49:21','2019-12-02 02:49:21','','theme-04','','inherit','open','closed','','theme-04','','','2019-12-02 02:49:21','2019-12-02 02:49:21','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-04.jpg',0,'attachment','image/jpeg',0),(1534,1,'2019-12-02 02:49:24','2019-12-02 02:49:24','','theme-05','','inherit','open','closed','','theme-05','','','2019-12-02 02:49:24','2019-12-02 02:49:24','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05.jpg',0,'attachment','image/jpeg',0),(1535,1,'2019-12-02 02:49:28','2019-12-02 02:49:28','','theme-06','','inherit','open','closed','','theme-06','','','2019-12-02 02:49:28','2019-12-02 02:49:28','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-06.jpg',0,'attachment','image/jpeg',0),(1536,1,'2019-12-02 02:49:31','2019-12-02 02:49:31','','theme-07','','inherit','open','closed','','theme-07','','','2019-12-02 02:49:31','2019-12-02 02:49:31','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg',0,'attachment','image/jpeg',0),(1537,1,'2019-12-02 02:49:34','2019-12-02 02:49:34','','theme-08','','inherit','open','closed','','theme-08','','','2019-12-02 02:49:34','2019-12-02 02:49:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg',0,'attachment','image/jpeg',0),(1538,1,'2019-12-02 02:49:35','2019-12-02 02:49:35','','theme-09','','inherit','open','closed','','theme-09','','','2019-12-02 02:49:35','2019-12-02 02:49:35','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09.jpg',0,'attachment','image/jpeg',0),(1539,1,'2019-12-02 02:49:37','2019-12-02 02:49:37','','theme-10','','inherit','open','closed','','theme-10','','','2019-12-02 02:49:37','2019-12-02 02:49:37','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg',0,'attachment','image/jpeg',0),(1540,1,'2019-12-02 02:49:39','2019-12-02 02:49:39','','theme-11','','inherit','open','closed','','theme-11','','','2019-12-02 02:49:39','2019-12-02 02:49:39','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg',0,'attachment','image/jpeg',0),(1541,1,'2019-12-02 02:49:40','2019-12-02 02:49:40','','theme-12','','inherit','open','closed','','theme-12','','','2019-12-02 02:49:40','2019-12-02 02:49:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg',0,'attachment','image/jpeg',0),(1542,1,'2019-12-02 02:49:42','2019-12-02 02:49:42','','theme-13','','inherit','open','closed','','theme-13','','','2019-12-02 02:49:42','2019-12-02 02:49:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg',0,'attachment','image/jpeg',0),(1543,1,'2019-12-02 02:49:44','2019-12-02 02:49:44','','theme-14','','inherit','open','closed','','theme-14','','','2019-12-02 02:49:44','2019-12-02 02:49:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-14.jpg',0,'attachment','image/jpeg',0),(1552,1,'2019-12-02 02:59:25','2019-12-02 02:59:25','','gallery-01','','inherit','open','closed','','gallery-01','','','2019-12-02 02:59:25','2019-12-02 02:59:25','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-01.jpg',0,'attachment','image/jpeg',0),(1553,1,'2019-12-02 02:59:29','2019-12-02 02:59:29','','gallery-02','','inherit','open','closed','','gallery-02','','','2019-12-02 02:59:29','2019-12-02 02:59:29','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-02.jpg',0,'attachment','image/jpeg',0),(1554,1,'2019-12-02 02:59:33','2019-12-02 02:59:33','','gallery-03','','inherit','open','closed','','gallery-03','','','2019-12-02 02:59:33','2019-12-02 02:59:33','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg',0,'attachment','image/jpeg',0),(1555,1,'2019-12-02 02:59:36','2019-12-02 02:59:36','','gallery-04','','inherit','open','closed','','gallery-04','','','2019-12-02 02:59:36','2019-12-02 02:59:36','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-04.jpg',0,'attachment','image/jpeg',0),(1556,1,'2019-12-02 02:59:41','2019-12-02 02:59:41','','gallery-05','','inherit','open','closed','','gallery-05','','','2019-12-02 02:59:41','2019-12-02 02:59:41','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-05.jpg',0,'attachment','image/jpeg',0),(1557,1,'2019-12-02 02:59:45','2019-12-02 02:59:45','','gallery-06','','inherit','open','closed','','gallery-06','','','2019-12-02 02:59:45','2019-12-02 02:59:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-06.jpg',0,'attachment','image/jpeg',0),(1558,1,'2019-12-02 03:02:42','2019-12-02 03:02:42','','favicon','','inherit','open','closed','','favicon-3','','','2019-12-02 03:02:42','2019-12-02 03:02:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/favicon.png',0,'attachment','image/png',0),(1568,1,'2019-12-02 07:26:03','2019-12-02 07:26:03','','contact-about1','','inherit','open','closed','','contact-about1','','','2019-12-02 07:26:03','2019-12-02 07:26:03','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/contact-about1.png',0,'attachment','image/png',0),(1615,1,'2019-12-02 09:04:21','2019-12-02 09:04:21','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','FAQ','','publish','closed','closed','','main-contact-form_copy','','','2019-12-02 09:04:21','2019-12-02 09:04:21','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=1615',0,'wpcf7_contact_form','',0),(1656,1,'2019-12-02 13:48:10','2019-12-02 13:48:10','','testimonial-07','','inherit','open','closed','','testimonial-07','','','2019-12-02 13:48:10','2019-12-02 13:48:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg',0,'attachment','image/jpeg',0),(1657,1,'2019-12-02 13:48:11','2019-12-02 13:48:11','','testimonial-08','','inherit','open','closed','','testimonial-08','','','2019-12-02 13:48:11','2019-12-02 13:48:11','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg',0,'attachment','image/jpeg',0),(1658,1,'2019-12-02 13:48:13','2019-12-02 13:48:13','','testimonial-09','','inherit','open','closed','','testimonial-09','','','2019-12-02 13:48:13','2019-12-02 13:48:13','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg',0,'attachment','image/jpeg',0),(1678,1,'2019-12-02 16:00:11','2019-12-02 16:00:11','','client-05','','inherit','open','closed','','client-05','','','2019-12-02 16:00:11','2019-12-02 16:00:11','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png',0,'attachment','image/png',0),(1690,1,'2019-12-02 16:18:03','2019-12-02 16:18:03','','team-01','','inherit','open','closed','','team-01','','','2019-12-02 16:18:03','2019-12-02 16:18:03','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/team-01.jpg',0,'attachment','image/jpeg',0),(1691,1,'2019-12-02 16:18:05','2019-12-02 16:18:05','','team-02','','inherit','open','closed','','team-02','','','2019-12-02 16:18:05','2019-12-02 16:18:05','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/team-02.jpg',0,'attachment','image/jpeg',0),(1692,1,'2019-12-02 16:18:07','2019-12-02 16:18:07','','team-03','','inherit','open','closed','','team-03','','','2019-12-02 16:18:07','2019-12-02 16:18:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/team-03.jpg',0,'attachment','image/jpeg',0),(1693,1,'2019-12-02 16:18:08','2019-12-02 16:18:08','','team-04','','inherit','open','closed','','team-04','','','2019-12-02 16:18:08','2019-12-02 16:18:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/team-04.jpg',0,'attachment','image/jpeg',0),(1706,1,'2019-12-03 03:46:51','2019-12-03 03:46:51','','team-single','','inherit','open','closed','','team-single','','','2019-12-03 03:46:51','2019-12-03 03:46:51','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/team-single.jpg',0,'attachment','image/jpeg',0),(1738,1,'2019-10-03 06:46:11','2019-10-03 06:46:11','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-14-ohk322w5336j01x26zc5ll25lp9hrkdnxzz08chvly.jpg\" title=\"theme-14\" alt=\"theme-14\" />											\n	    <h3>\n        Consumer Products    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Consumer Products','','publish','closed','closed','','consumer-products','','','2019-10-03 06:46:11','2019-10-03 06:46:11','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=1738',0,'portfolio','',0),(1740,1,'2019-11-03 06:46:31','2019-11-03 06:46:31','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-13-ohk31y6y4x03e03vyfb0r48umrwnp2v09cpktyouh2.jpg\" title=\"theme-13\" alt=\"theme-13\" />											\n	    <h3>\n        Business Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Business Management','','publish','closed','closed','','business-management','','','2019-11-03 06:46:31','2019-11-03 06:46:31','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=1740',0,'portfolio','',0),(1742,1,'2019-12-03 06:47:59','2019-12-03 06:47:59','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" alt=\"theme-01\" />\n<h3>Business Growth</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Business Growth','','publish','closed','closed','','business-growth','','','2019-12-03 06:47:59','2019-12-03 06:47:59','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=1742',0,'portfolio','',0),(1766,1,'2019-10-03 09:08:01','2019-10-03 09:08:01','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" title=\"theme-08\" alt=\"theme-08\" />											\n	    <h3>\n        StartUp Business    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','StartUp Business','','publish','closed','closed','','startup-business','','','2019-10-03 09:08:01','2019-10-03 09:08:01','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=portfolio&amp;p=1766',0,'portfolio','',0),(1831,1,'2019-12-04 07:26:30','2019-12-04 07:26:30','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Growth','','publish','closed','closed','','business-growth','','','2019-12-04 07:26:30','2019-12-04 07:26:30','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=1831',0,'service','',0),(1833,1,'2019-12-04 07:27:00','2019-12-04 07:27:00','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Leadership Work','','publish','closed','closed','','leadership-work','','','2019-12-04 07:27:00','2019-12-04 07:27:00','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=1833',0,'service','',0),(1835,1,'2019-12-04 07:27:42','2019-12-04 07:27:42','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','StartUp Business','','publish','closed','closed','','startup-business','','','2019-12-04 07:27:42','2019-12-04 07:27:42','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=1835',0,'service','',0),(1837,1,'2019-12-04 07:28:57','2019-12-04 07:28:57','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Success fullfill','','publish','closed','closed','','success-fullfill','','','2019-12-04 07:28:57','2019-12-04 07:28:57','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=1837',0,'service','',0),(1860,1,'2019-12-04 08:23:42','2019-12-04 08:23:42','','theme-15','','inherit','open','closed','','theme-15','','','2019-12-04 08:23:42','2019-12-04 08:23:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg',0,'attachment','image/jpeg',0),(1877,1,'2019-12-04 09:34:55','2019-12-04 09:34:55','','about1','','inherit','open','closed','','about1','','','2019-12-04 09:34:55','2019-12-04 09:34:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/about1.png',0,'attachment','image/png',0),(1892,1,'2019-12-04 09:47:40','2019-12-04 09:47:40','','signature','','inherit','open','closed','','signature','','','2019-12-04 09:47:40','2019-12-04 09:47:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/signature.png',0,'attachment','image/png',0),(1896,1,'2019-12-04 09:57:44','2019-12-04 09:57:44','','about-gap','','inherit','open','closed','','about-gap','','','2019-12-04 09:57:44','2019-12-04 09:57:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/about-gap.png',0,'attachment','image/png',0),(1925,1,'2019-12-05 07:07:49','2019-12-05 07:07:49','','BlackBlazer','','inherit','open','closed','','blackblazer','','','2019-12-05 07:07:49','2019-12-05 07:07:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/BlackBlazer.jpg',0,'attachment','image/jpeg',0),(1926,1,'2019-12-05 07:07:52','2019-12-05 07:07:52','','BlackDress','','inherit','open','closed','','blackdress','','','2019-12-05 07:07:52','2019-12-05 07:07:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/BlackDress.jpg',0,'attachment','image/jpeg',0),(1927,1,'2019-12-05 07:07:54','2019-12-05 07:07:54','','BlackShoes','','inherit','open','closed','','blackshoes','','','2019-12-05 07:07:54','2019-12-05 07:07:54','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/BlackShoes.jpg',0,'attachment','image/jpeg',0),(1928,1,'2019-12-05 07:07:56','2019-12-05 07:07:56','','BlackSuit','','inherit','open','closed','','blacksuit','','','2019-12-05 07:07:56','2019-12-05 07:07:56','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/BlackSuit.jpg',0,'attachment','image/jpeg',0),(1929,1,'2019-12-05 07:07:58','2019-12-05 07:07:58','','CamiSkaterFront','','inherit','open','closed','','camiskaterfront','','','2019-12-05 07:07:58','2019-12-05 07:07:58','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/CamiSkaterFront.jpg',0,'attachment','image/jpeg',0),(1930,1,'2019-12-05 07:08:00','2019-12-05 07:08:00','','ChelseaBoots','','inherit','open','closed','','chelseaboots','','','2019-12-05 07:08:00','2019-12-05 07:08:00','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/ChelseaBoots.jpg',0,'attachment','image/jpeg',0),(1931,1,'2019-12-05 07:08:02','2019-12-05 07:08:02','','FlatShoes','','inherit','open','closed','','flatshoes','','','2019-12-05 07:08:02','2019-12-05 07:08:02','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/FlatShoes.jpg',0,'attachment','image/jpeg',0),(1932,1,'2019-12-05 07:08:03','2019-12-05 07:08:03','','GreyShirt','','inherit','open','closed','','greyshirt','','','2019-12-05 07:08:03','2019-12-05 07:08:03','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/GreyShirt-1.jpg',0,'attachment','image/jpeg',0),(1933,1,'2019-12-05 07:08:04','2019-12-05 07:08:04','','LightBlueShirt','','inherit','open','closed','','lightblueshirt','','','2019-12-05 07:08:04','2019-12-05 07:08:04','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/LightBlueShirt.jpg',0,'attachment','image/jpeg',0),(1934,1,'2019-12-05 07:08:06','2019-12-05 07:08:06','','MonochromeCamiMidi','','inherit','open','closed','','monochromecamimidi','','','2019-12-05 07:08:06','2019-12-05 07:08:06','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/MonochromeCamiMidi.jpg',0,'attachment','image/jpeg',0),(1935,1,'2019-12-05 07:08:07','2019-12-05 07:08:07','','PureSilkBlackTie','','inherit','open','closed','','puresilkblacktie','','','2019-12-05 07:08:07','2019-12-05 07:08:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/PureSilkBlackTie.jpg',0,'attachment','image/jpeg',0),(1936,1,'2019-12-05 07:08:08','2019-12-05 07:08:08','','PureSilkBlueTie','','inherit','open','closed','','puresilkbluetie','','','2019-12-05 07:08:08','2019-12-05 07:08:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/PureSilkBlueTie-1.jpg',0,'attachment','image/jpeg',0),(1937,1,'2019-12-05 07:08:09','2019-12-05 07:08:09','','PureSilkGreyTie','','inherit','open','closed','','puresilkgreytie','','','2019-12-05 07:08:09','2019-12-05 07:08:09','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/PureSilkGreyTie-1.jpg',0,'attachment','image/jpeg',0),(1938,1,'2019-12-05 07:08:10','2019-12-05 07:08:10','','SlimFitBrightBlue','','inherit','open','closed','','slimfitbrightblue','','','2019-12-05 07:08:10','2019-12-05 07:08:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/SlimFitBrightBlue.jpg',0,'attachment','image/jpeg',0),(1939,1,'2019-12-05 07:08:11','2019-12-05 07:08:11','','WhiteTailoredBlazer','','inherit','open','closed','','whitetailoredblazer','','','2019-12-05 07:08:11','2019-12-05 07:08:11','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/WhiteTailoredBlazer.jpg',0,'attachment','image/jpeg',0),(1940,1,'2019-12-05 07:36:35','2019-12-05 07:36:35','','theme-16','','inherit','open','closed','','theme-16','','','2019-12-05 07:36:35','2019-12-05 07:36:35','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-16.jpg',0,'attachment','image/jpeg',0),(1941,1,'2019-12-05 07:36:38','2019-12-05 07:36:38','','theme-17','','inherit','open','closed','','theme-17','','','2019-12-05 07:36:38','2019-12-05 07:36:38','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-17.jpg',0,'attachment','image/jpeg',0),(1942,1,'2019-12-05 07:36:42','2019-12-05 07:36:42','','theme-18','','inherit','open','closed','','theme-18','','','2019-12-05 07:36:42','2019-12-05 07:36:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-18.jpg',0,'attachment','image/jpeg',0),(1943,1,'2019-12-05 07:36:45','2019-12-05 07:36:45','','theme-19','','inherit','open','closed','','theme-19','','','2019-12-05 07:36:45','2019-12-05 07:36:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-19.jpg',0,'attachment','image/jpeg',0),(1944,1,'2019-12-05 07:36:48','2019-12-05 07:36:48','','theme-20','','inherit','open','closed','','theme-20','','','2019-12-05 07:36:48','2019-12-05 07:36:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-20.jpg',0,'attachment','image/jpeg',0),(1945,1,'2019-12-05 07:36:50','2019-12-05 07:36:50','','theme-21','','inherit','open','closed','','theme-21','','','2019-12-05 07:36:50','2019-12-05 07:36:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-21.jpg',0,'attachment','image/jpeg',0),(1946,1,'2019-12-05 07:36:53','2019-12-05 07:36:53','','theme-22','','inherit','open','closed','','theme-22','','','2019-12-05 07:36:53','2019-12-05 07:36:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-22.jpg',0,'attachment','image/jpeg',0),(1972,1,'2019-12-05 08:34:53','2019-12-05 08:34:53','Career\n	    <h3>\n                From startups to Fortune 500s, WayUp offers the best internships and jobs.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now fds</a>\n                                    <a href=\"#\"><img width=\"44\" height=\"44\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-envato.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Graphic Artist                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-themeforest.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Sales Reporter                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"53\" height=\"47\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-codecanyon.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Marketer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"41\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/icon-career.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Developer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Careers','','publish','closed','closed','','careers','','','2019-12-05 08:34:53','2019-12-05 08:34:53','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=1972',0,'page','',0),(1985,1,'2019-12-05 09:15:30','2019-12-05 09:15:30','','icon-google','','inherit','open','closed','','icon-google','','','2019-12-05 09:15:30','2019-12-05 09:15:30','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/icon-google.png',0,'attachment','image/png',0),(1988,1,'2019-12-05 09:23:43','2019-12-05 09:23:43','','icon-career','','inherit','open','closed','','icon-career','','','2019-12-05 09:23:43','2019-12-05 09:23:43','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/icon-career.png',0,'attachment','image/png',0),(1989,1,'2019-12-05 09:23:45','2019-12-05 09:23:45','','icon-codecanyon','','inherit','open','closed','','icon-codecanyon','','','2019-12-05 09:23:45','2019-12-05 09:23:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/icon-codecanyon.png',0,'attachment','image/png',0),(1990,1,'2019-12-05 09:23:46','2019-12-05 09:23:46','','icon-envato','','inherit','open','closed','','icon-envato','','','2019-12-05 09:23:46','2019-12-05 09:23:46','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/icon-envato.png',0,'attachment','image/png',0),(1991,1,'2019-12-05 09:23:48','2019-12-05 09:23:48','','icon-themeforest','','inherit','open','closed','','icon-themeforest','','','2019-12-05 09:23:48','2019-12-05 09:23:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/icon-themeforest.png',0,'attachment','image/png',0),(2056,1,'2019-12-06 07:18:49','2019-12-06 07:18:49','','bg-section-01','','inherit','open','closed','','bg-section-01','','','2019-12-06 07:18:49','2019-12-06 07:18:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-01.png',0,'attachment','image/png',0),(2070,1,'2019-12-06 08:29:04','2019-12-06 08:29:04','','bg-section-02','','inherit','open','closed','','bg-section-02','','','2019-12-06 08:29:04','2019-12-06 08:29:04','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-02.png',0,'attachment','image/png',0),(2074,1,'2019-12-06 08:46:48','2019-12-06 08:46:48','','testimonial-10','','inherit','open','closed','','testimonial-10','','','2019-12-06 08:46:48','2019-12-06 08:46:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-10-1.jpg',0,'attachment','image/jpeg',0),(2091,1,'2019-12-07 03:23:07','2019-12-07 03:23:07','','bg-section-03','','inherit','open','closed','','bg-section-03','','','2019-12-07 03:23:07','2019-12-07 03:23:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-03.png',0,'attachment','image/png',0),(2114,1,'2019-12-07 04:07:52','2019-12-07 04:07:52','','home-team-01','','inherit','open','closed','','home-team-01','','','2019-12-07 04:07:52','2019-12-07 04:07:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01.jpg',0,'attachment','image/jpeg',0),(2115,1,'2019-12-07 04:07:56','2019-12-07 04:07:56','','home-team-02','','inherit','open','closed','','home-team-02','','','2019-12-07 04:07:56','2019-12-07 04:07:56','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-02.jpg',0,'attachment','image/jpeg',0),(2116,1,'2019-12-07 04:07:58','2019-12-07 04:07:58','','home-team-03','','inherit','open','closed','','home-team-03','','','2019-12-07 04:07:58','2019-12-07 04:07:58','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-03.jpg',0,'attachment','image/jpeg',0),(2117,1,'2019-12-07 04:08:23','2019-12-07 04:08:23','','home-team-04','','inherit','open','closed','','home-team-04','','','2019-12-07 04:08:23','2019-12-07 04:08:23','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04.jpg',0,'attachment','image/jpeg',0),(2125,1,'2019-12-07 08:45:56','2019-12-07 08:45:56','','bg-section-04','','inherit','open','closed','','bg-section-04','','','2019-12-07 08:45:56','2019-12-07 08:45:56','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-04.png',0,'attachment','image/png',0),(2170,1,'2019-12-07 15:24:17','2019-12-07 15:24:17','','home-author-01','','inherit','open','closed','','home-author-01','','','2019-12-07 15:24:17','2019-12-07 15:24:17','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-author-01.jpg',0,'attachment','image/jpeg',0),(2171,1,'2019-12-07 15:24:19','2019-12-07 15:24:19','','home-author-02','','inherit','open','closed','','home-author-02','','','2019-12-07 15:24:19','2019-12-07 15:24:19','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-author-02.jpg',0,'attachment','image/jpeg',0),(2179,1,'2019-12-07 16:19:38','2019-12-07 16:19:38','','award-year','','inherit','open','closed','','award-year','','','2019-12-07 16:19:38','2019-12-07 16:19:38','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/award-year.png',0,'attachment','image/png',0),(2180,1,'2019-12-07 16:19:39','2019-12-07 16:19:39','','award','','inherit','open','closed','','award','','','2019-12-07 16:19:39','2019-12-07 16:19:39','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/award.png',0,'attachment','image/png',0),(2269,1,'2019-12-12 03:13:06','2019-12-12 03:13:06','[rev_slider alias=\"finance\"][/rev_slider]		\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                                \n                                                                                                                <h3>Business Planning</h3>\n                                            We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                                                                <h3>Program management</h3>\n                                            The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                <h3>Strategy</h3>\n                                            What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/strategy/\">Strategy</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/strategy/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                <h3>Chart management</h3>\n                                            Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                <h3>SEO Optimization</h3>\n                                            A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                <h3>Market Research</h3>\n                                            Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">+</a>\n		You can also find our <a href=\"#\">Consultant Service</a> to contact for the consulting		\n	    <h3>\n                            <i></i>\n                        We’re a global stakeholder relations and partnership building consultancy.                    \n    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.		\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins with connections between people.\n        <h3>Networks that span sectors</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government, industry and global forums. \n        <h3>Flexible delivery model</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n										<img width=\"558\" height=\"631\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1-265x300.png 265w\" sizes=\"(max-width: 558px) 100vw, 558px\" />											\n	    <h3>\n                            <i></i>\n                        We position our clients at the forefront of their field by advancing an agenda.                    \n    </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\n                                    A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\n                                    Photography is the core of everything we do, photography equipment, camera, photography.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\n                                    When there is a key element of your organisation that is limiting your people’s to engagement performance.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\n                                    Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\"></a>\n	    <h3>\n                            <i></i>\n                        We draw on our global network to assemble with the skills of task at hand.                     \n    </h3>\n		We have spent 25 years working for one of Australia’s most\nrecognised and successful retailers purpose and inspired culture, where people work cohesively towards shared goals.		\n        50%\n    <h3>Active to work</h3>\n    We do not believe in contracts\ntherefore we do not have one. \nWe are fully invested.\n        75%\n    <h3>Completed work</h3>\n    You will be fully satisfied, you\nare under no obligation to continue with the services I provide.\n										<img width=\"624\" height=\"558\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-02.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-02.png 624w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-02-300x268.png 300w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-02-600x537.png 600w\" sizes=\"(max-width: 624px) 100vw, 624px\" />											\n	    <h3>\n                            <i></i>\n                        To review means to look back over something for evaluation or memory.                    \n    </h3>\n		It’s always a joy to hear that the work I do has positively\nimpacted our clients and that they are happy to share their\nexperience.		\n                                <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-10.jpg\" width=\"196\" height=\"196\" alt=\"testimonial-10\" title=\"testimonial-10\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-author-01.jpg\" width=\"300\" height=\"300\" alt=\"home-author-01\" title=\"home-author-01\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-author-02.jpg\" width=\"300\" height=\"300\" alt=\"home-author-02\" title=\"home-author-02\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-single-300x300.jpg\" width=\"300\" height=\"300\" alt=\"team-single\" title=\"team-single\" />                                “\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Kathleen Smith                                 </h3>\n                                Senior Director\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Pamela Johnson                                 </h3>\n                                Leadership Group\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Macquarie Telecom                                 </h3>\n                                Senior Director\n	    <h3>\n                        You can learn more from our asked questions                    \n    </h3>\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I consult with the consultant team?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n	    <h3>\n                        Get a free quote here                    \n    </h3>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" />\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Subject\">Subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Consult today</button>\n</form>        \n	    <h3>\n                            <i></i>\n                        Many organizations realize the benefits of forming work teams.                    \n    </h3>\n		Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.		\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-01.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Gwen Johnson</a>\n                                    </h3>\n                                    Founder &amp; CEO\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-02.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Thomas Olsen</a>\n                                    </h3>\n                                    Regional Leader\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-03.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">Manny Maceda</a>\n                                    </h3>\n                                    Managing Partner\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-04.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/team-details/\">James Allen</a>\n                                    </h3>\n                                    Chief Executive\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                            <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n	    <h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">+</a>\n                Load more            \n	    <h3>\n                            <i></i>\n                        Get in touch for any kind of help and informations                    \n    </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n        <h3>\n            Our head office address:        </h3>\n        3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail us for information        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f2166-o2\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"2166\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2166-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>        \n        	    Best Business Award ‘19\n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-01.jpg\"></a>\n        	    Family Business Award \n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-02.jpg\"></a>\n        	    Excellence in Exporting\n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-03.jpg\"></a>\n	    <h3>\n                            <i></i>\n                        We believe, the passion trying &amp; skill can make a top-performing company.                     \n    </h3>\n										<img width=\"186\" height=\"123\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-year.png\" alt=\"\" />											\n	    <h5>\n                        Business Awards We Got!                    \n    </h5>\n        	    Global Safety Award \n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-04.jpg\"></a>\n        	    Sales Excellence Award \n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-05.jpg\"></a>\n        	    Top Leading Global  Trade\n        <a href=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/award-06.jpg\"></a>\n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; more news from resource library.                    \n    </h3>\n		We would love to share a similar experience and how I\nlearned some valuable lessons during a downturn.		\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\"><img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\"><img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\"><img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\"><img data-src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-finance4/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Shortcode','','publish','closed','closed','','shortcode','','','2019-12-12 03:13:06','2019-12-12 03:13:06','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=2269',0,'page','',0),(2306,1,'2019-12-12 07:41:27','2019-12-12 07:41:27','','banner-01','','inherit','open','closed','','banner-01','','','2019-12-12 07:41:27','2019-12-12 07:41:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/banner-01.png',0,'attachment','image/png',0),(2319,1,'2019-12-12 08:10:52','2019-12-12 08:10:52','','signature-02','','inherit','open','closed','','signature-02','','','2019-12-12 08:10:52','2019-12-12 08:10:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/signature-02.png',0,'attachment','image/png',0),(2331,1,'2019-12-12 09:16:28','2019-12-12 09:16:28','Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. 		\n                                            Corporate\n                70%\n                                            Commercial\n                98%\n                                            Business\n                80%','Tab 01','','publish','closed','closed','','tab-01','','','2019-12-12 09:16:28','2019-12-12 09:16:28','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=elementor_library&amp;p=2331',0,'elementor_library','',0),(2382,1,'2019-12-13 04:19:44','2019-12-13 04:19:44','','bg-section-04','','inherit','open','closed','','bg-section-04-2','','','2019-12-13 04:19:44','2019-12-13 04:19:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-04.jpg',0,'attachment','image/jpeg',0),(2391,1,'2019-12-13 04:31:47','2019-12-13 04:31:47','','bg-section-05','','inherit','open','closed','','bg-section-05','','','2019-12-13 04:31:47','2019-12-13 04:31:47','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-05.png',0,'attachment','image/png',0),(2439,1,'2019-12-13 08:25:31','2019-12-13 08:25:31','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-11\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-11-ohk30az46cr12khwk7piw16t7i0j85bx17lzlj4nd2.jpg\" alt=\"theme-11\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Developing a program to be alleviate poverty.','','publish','closed','closed','','developing-a-program-to-be-alleviate-poverty','','','2019-12-13 08:25:31','2019-12-13 08:25:31','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=case-study&amp;p=2439',0,'case-study','',0),(2440,1,'2019-12-13 08:25:50','2019-12-13 08:25:50','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" alt=\"theme-07\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','On behalf of World Bank, an Advocom Group.','','publish','closed','closed','','on-behalf-of-world-bank-an-advocom-group-2','','','2019-12-13 08:25:50','2019-12-13 08:25:50','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=case-study&amp;p=2440',0,'case-study','',0),(2441,1,'2019-12-13 08:26:17','2019-12-13 08:26:17','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-08\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" alt=\"theme-08\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','Supporting a unique global public-private partnership.','','publish','closed','closed','','supporting-a-unique-global-public-private-partnership','','','2019-12-13 08:26:17','2019-12-13 08:26:17','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=case-study&amp;p=2441',0,'case-study','',0),(2442,1,'2019-12-13 08:26:38','2019-12-13 08:26:38','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-12\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" alt=\"theme-12\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>','International business development','','publish','closed','closed','','international-business-development','','','2019-12-13 08:26:38','2019-12-13 08:26:38','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=case-study&amp;p=2442',0,'case-study','',0),(2528,1,'2019-12-14 02:24:48','2019-12-14 02:24:48','','bg-section-07','','inherit','open','closed','','bg-section-07','','','2019-12-14 02:24:48','2019-12-14 02:24:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-07.png',0,'attachment','image/png',0),(2602,1,'2019-12-14 09:12:55','2019-12-14 09:12:55','','bg-section-07','','inherit','open','closed','','bg-section-07-2','','','2019-12-14 09:12:55','2019-12-14 09:12:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/bg-section-07-1.png',0,'attachment','image/png',0),(2606,1,'2019-12-14 09:19:23','2019-12-14 09:19:23','','h3-team-02','','inherit','open','closed','','h3-team-02','','','2019-12-14 09:19:23','2019-12-14 09:19:23','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h3-team-02.png',0,'attachment','image/png',0),(2608,1,'2019-12-14 09:26:37','2019-12-14 09:26:37','','h3-team-01','','inherit','open','closed','','h3-team-01','','','2019-12-14 09:26:37','2019-12-14 09:26:37','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h3-team-01-1.jpg',0,'attachment','image/jpeg',0),(2609,1,'2019-12-14 09:26:39','2019-12-14 09:26:39','','h3-team-03','','inherit','open','closed','','h3-team-03','','','2019-12-14 09:26:39','2019-12-14 09:26:39','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h3-team-03-1.jpg',0,'attachment','image/jpeg',0),(2610,1,'2019-12-14 09:26:40','2019-12-14 09:26:40','','h3-team-04','','inherit','open','closed','','h3-team-04','','','2019-12-14 09:26:40','2019-12-14 09:26:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h3-team-04-1.jpg',0,'attachment','image/jpeg',0),(2625,1,'2020-03-04 01:25:29','2020-03-04 01:25:29','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Web Development','','publish','closed','closed','','web-development','','','2020-03-04 01:25:29','2020-03-04 01:25:29','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=2625',0,'service','',0),(2627,1,'2020-03-04 01:26:57','2020-03-04 01:26:57','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/web-desiging/\">Web Desiging</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-insurance/\">Business Insurance</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/health-insurance/\">Health Insurance</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/life-insurance/\">Life Insurance</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/flood-insurance/\">Flood Insurance</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','SEO Optimization','','publish','closed','closed','','seo-optimization-2','','','2020-03-04 01:26:57','2020-03-04 01:26:57','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=2627',0,'service','',0),(2671,1,'2019-12-16 02:27:34','2019-12-16 02:27:34','','h3-map','','inherit','open','closed','','h3-map','','','2019-12-16 02:27:34','2019-12-16 02:27:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h3-map.png',0,'attachment','image/png',0),(2725,1,'2019-12-17 06:40:49','2019-12-17 06:40:49','','h4-about1','','inherit','open','closed','','h4-about1','','','2019-12-17 06:40:49','2019-12-17 06:40:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h4-about1.png',0,'attachment','image/png',0),(2758,1,'2019-12-17 09:26:24','2019-12-17 09:26:24','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Web Development','','publish','closed','closed','','web-development-2','','','2019-12-17 09:26:24','2019-12-17 09:26:24','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2758',0,'service','',0),(2763,1,'2019-12-17 09:33:49','2019-12-17 09:33:49','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Search Engine Optimization','','publish','closed','closed','','search-engine-optimization','','','2019-12-17 09:33:49','2019-12-17 09:33:49','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2763',0,'service','',0),(2765,1,'2019-12-17 09:34:21','2019-12-17 09:34:21','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Social Media Marketing','','publish','closed','closed','','social-media-marketing','','','2019-12-17 09:34:21','2019-12-17 09:34:21','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2765',0,'service','',0),(2780,1,'2019-12-14 10:11:54','2019-12-14 10:11:54','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Content Marketing','','publish','closed','closed','','content-marketing-2-2','','','2019-12-14 10:11:54','2019-12-14 10:11:54','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2780',0,'service','',0),(2785,1,'2019-12-15 10:12:40','2019-12-15 10:12:40','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Apps Development','','publish','closed','closed','','apps-development','','','2019-12-15 10:12:40','2019-12-15 10:12:40','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2785',0,'service','',0),(2787,1,'2019-12-16 10:13:23','2019-12-16 10:13:23','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n                Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','PPC Advertising','','publish','closed','closed','','ppc-advertising','','','2019-12-16 10:13:23','2019-12-16 10:13:23','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=2787',0,'service','',0),(2845,1,'2019-12-18 02:40:41','2019-12-18 02:40:41','','h4-map','','inherit','open','closed','','h4-map','','','2019-12-18 02:40:41','2019-12-18 02:40:41','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h4-map.png',0,'attachment','image/png',0),(3282,1,'2020-01-31 08:29:09','2020-01-31 08:29:09','','h6-bg-section-01','','inherit','open','closed','','h6-bg-section-01','','','2020-01-31 08:29:09','2020-01-31 08:29:09','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/01/h6-bg-section-01.png',0,'attachment','image/png',0),(3383,1,'2020-02-02 09:08:29','2020-02-02 09:08:29','','h6-team1','','inherit','open','closed','','h6-team1','','','2020-02-02 09:08:29','2020-02-02 09:08:29','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team1.jpg',0,'attachment','image/jpeg',0),(3399,1,'2020-02-02 10:27:43','2020-02-02 10:27:43','','h6-team2','','inherit','open','closed','','h6-team2','','','2020-02-02 10:27:43','2020-02-02 10:27:43','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2.jpg',0,'attachment','image/jpeg',0),(3400,1,'2020-02-02 10:27:45','2020-02-02 10:27:45','','h6-team3','','inherit','open','closed','','h6-team3','','','2020-02-02 10:27:45','2020-02-02 10:27:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team3.jpg',0,'attachment','image/jpeg',0),(3401,1,'2020-02-02 10:27:47','2020-02-02 10:27:47','','h6-team4','','inherit','open','closed','','h6-team4','','','2020-02-02 10:27:47','2020-02-02 10:27:47','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4.jpg',0,'attachment','image/jpeg',0),(3411,1,'2020-02-02 13:18:02','2020-02-02 13:18:02','','h6-bg-section-02','','inherit','open','closed','','h6-bg-section-02','','','2020-02-02 13:18:02','2020-02-02 13:18:02','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-bg-section-02.png',0,'attachment','image/png',0),(3497,1,'2020-02-07 02:17:36','2020-02-07 02:17:36','Testimonial                                \n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                \n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                \n                                <h3>    \n                                    Phillip Macintyre                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                \n                                <h3>    \n                                    Amy Harrison                                </h3>\n                                Contiki Holidays\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                \n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                \n                                <h3>    \n                                    Phillip Macintyre                                </h3>\n                                CEO of Blue Illusion\n                        I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                \n                                <h3>    \n                                    Amy Harrison                                </h3>\n                                Contiki Holidays\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n		Like What We Offer		\n	    <h3>\n                        DO BUSINESS<br />\nWITH US!                    \n            </h3>\n		In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/contact/\" data-wow-delay=\"ms\">\n                Contact us\n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.2','','publish','closed','closed','','testimonials-v-2','','','2020-02-07 02:17:36','2020-02-07 02:17:36','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3497',0,'page','',0),(3500,1,'2020-02-07 02:17:53','2020-02-07 02:17:53','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\n<h3>Donald Johnson</h3>\nExecutive Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-01.jpg\" alt=\"testimonial-01\" width=\"109\" height=\"109\" />\n<h3>Kathleen Smith</h3>\nSEO Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\n<h3>Jewel D Smith</h3>\nExecutive Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Brad Smith</h3>\nSEO Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.3','','publish','closed','closed','','testimonials-v-3','','','2020-02-07 02:17:53','2020-02-07 02:17:53','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3500',0,'page','',0),(3502,1,'2020-02-07 02:18:13','2020-02-07 02:18:13','Testimonial\n<h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\">\n<a href=\"#\"></a>\n<h3>\n                                    Neethu Varghese</h3>\nMSc Public Health\n“\nEaloor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\">\n<a href=\"\"></a>\n<h3>\n                                    Shawn Biju</h3>\nDiagnostic Radiography\n“\nHi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\">\n<a href=\"\"></a>\n<h3>\n                                    Vimal T S</h3>\nRGN |Central Manchester Foundation Trust\n“\nI am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\">\n<a href=\"\"></a>\n<h3>\n                                    Himaja Pavani</h3>\nRGN | Central Manchester Foundation Trust\n“\nI am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n<a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\nView more\n</a>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','Testimonials v.4','','publish','closed','closed','','testimonials-v-4','','','2022-01-21 06:33:15','2022-01-21 06:33:15','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3502',0,'page','',0),(3504,1,'2020-02-07 02:18:35','2020-02-07 02:18:35','Pricing\n<h3>We offer the best price for you! <i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nPricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\nbusiness\'s marketing plan.\nMonthly\nYearly Save 20%\n\n<style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#000000;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3876 .elementor-element.elementor-element-5f276f89{width:50%;}.elementor-3876 .elementor-element.elementor-element-8a7b665{width:50%;}.elementor-3876 .elementor-element.elementor-element-f582dc4{width:50%;}.elementor-3876 .elementor-element.elementor-element-4b28e043{width:50%;}}</style>\n\n<section data-id=\"33a40038\" data-element_type=\"section\">\n<h3>New Business</h3>\n1-4 Employees\n$99\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\nBest choice\n<h3>Small Business</h3>\n5-19 Employees\n$199\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\n<h3>Growing Business</h3>\n20-39 Employees\n$299\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>\n<a href=\"#\">Try now</a>\n<h3>Large Business</h3>\nUnlimited Employees\n$399\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>\n<a href=\"#\">Try now</a>\n\n</section><style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#000000;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3872 .elementor-element.elementor-element-43484ebe{width:50%;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee{width:50%;}.elementor-3872 .elementor-element.elementor-element-609a9e8e{width:50%;}.elementor-3872 .elementor-element.elementor-element-12576590{width:50%;}}</style>\n\n<section data-id=\"7f5cbd63\" data-element_type=\"section\">\n<h3>New Business</h3>\n1-4 Employees\n$499\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\nBest choice\n<h3>Small Business</h3>\n5-19 Employees\n$599\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\n<h3>Growing Business</h3>\n20-39 Employees\n$599\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>\n<a href=\"#\">Try now</a>\n<h3>Large Business</h3>\nUnlimited Employees\n$699\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>\n<a href=\"#\">Try now</a>\n\n</section><a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>','Pricing v.2','','publish','closed','closed','','pricing-v-2','','','2020-02-07 02:18:35','2020-02-07 02:18:35','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3504',0,'page','',0),(3506,1,'2020-02-07 02:18:47','2020-02-07 02:18:47','','Pricing v.3','','publish','closed','closed','','pricing-v-3','','','2020-02-07 02:18:47','2020-02-07 02:18:47','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3506',0,'page','',0),(3508,1,'2020-02-07 02:19:01','2020-02-07 02:19:01','','Pricing v.4','','publish','closed','closed','','pricing-v-4','','','2020-02-07 02:19:01','2020-02-07 02:19:01','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3508',0,'page','',0),(3514,1,'2020-02-07 02:19:55','2020-02-07 02:19:55','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','publish','closed','closed','','contact-v-4','','','2022-01-24 04:49:18','2022-01-24 04:49:18','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3514',0,'page','',0),(3516,1,'2020-02-07 02:20:53','2020-02-07 02:20:53','Team member\n<h3><i></i>\nOur expert team members</h3>\n&nbsp;\n<h3>Iven Rocky</h3>\nSenior Web Developer\nWordPress\n90%\nJava\n50%\nCss\n70%\n<h3>Rebecca Leo</h3>\nWeb Designer\nPhotoshop\n90%\nSketch\n80%\nCss\n70%\n<h3>Adam Ivan</h3>\nChef Advisor\nBusiness Sense\n90%\nCleanliness\n80%\nCreativity\n70%\n<h3>Obira Franc</h3>\nTax Consultant\nNegotiation\n90%\nTax law\n50%\nOrganisation\n70%\n\n<a href=\"https://demo.casethemes.net/consultio-finance4/team/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Team v.2','','publish','closed','closed','','team-v-2','','','2020-02-07 02:20:53','2020-02-07 02:20:53','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3516',0,'page','',0),(3518,1,'2020-02-07 02:21:09','2020-02-07 02:21:09','Team member\n<h3>We always work with a great team. <i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"team-single\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/team-single-360x360.jpg\" alt=\"team-single\" width=\"360\" height=\"360\" />\n<h3>Fran Bostick</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team2\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" alt=\"h6-team2\" width=\"360\" height=\"360\" />\n<h3>Tina Holt</h3>\nFederal Contractor\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team3\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" alt=\"h6-team3\" width=\"360\" height=\"360\" />\n<h3>Charles Wilkinson</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team4\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" alt=\"h6-team4\" width=\"360\" height=\"360\" />\n<h3>Michael Alan Tate</h3>\nVice President\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team1\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team1.jpg\" alt=\"h6-team1\" width=\"350\" height=\"350\" />\n<h3>Suzanne Higgins</h3>\nSenior Consultant\n<a href=\"https://demo.casethemes.net/consultio-finance4/team/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Team v.3','','publish','closed','closed','','team-v-3','','','2020-02-07 02:21:09','2020-02-07 02:21:09','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3518',0,'page','',0),(3520,1,'2020-02-07 02:21:23','2020-02-07 02:21:23','<h3>\n                            <i></i>\n                        Many organizations realize the benefits of forming work teams.                    \n    </h3>\n	Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-01.jpg\" width=\"267\" height=\"352\" alt=\"home-team-01\" title=\"home-team-01\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-02.jpg\" width=\"267\" height=\"352\" alt=\"home-team-02\" title=\"home-team-02\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-03.jpg\" width=\"267\" height=\"352\" alt=\"home-team-03\" title=\"home-team-03\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-team-04.jpg\" width=\"267\" height=\"352\" alt=\"home-team-04\" title=\"home-team-04\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team1-267x350.jpg\" width=\"267\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team2-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team2\" title=\"h6-team2\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team3-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team3\" title=\"h6-team3\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/h6-team4-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team4\" title=\"h6-team4\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team v.4','','publish','closed','closed','','team-v-4','','','2020-02-07 02:21:23','2020-02-07 02:21:23','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=3520',0,'page','',0),(3590,1,'2020-02-07 03:22:58','2020-02-07 03:22:58','','icon-analysis','','inherit','open','closed','','icon-analysis','','','2020-02-07 03:22:58','2020-02-07 03:22:58','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-analysis.png',0,'attachment','image/png',0),(3591,1,'2020-02-07 03:23:04','2020-02-07 03:23:04','','icon-business','','inherit','open','closed','','icon-business','','','2020-02-07 03:23:04','2020-02-07 03:23:04','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-business.png',0,'attachment','image/png',0),(3592,1,'2020-02-07 03:23:09','2020-02-07 03:23:09','','icon-chart-star','','inherit','open','closed','','icon-chart-star','','','2020-02-07 03:23:09','2020-02-07 03:23:09','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-chart-star.png',0,'attachment','image/png',0),(3593,1,'2020-02-07 03:23:14','2020-02-07 03:23:14','','icon-idea','','inherit','open','closed','','icon-idea','','','2020-02-07 03:23:14','2020-02-07 03:23:14','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-idea.png',0,'attachment','image/png',0),(3594,1,'2020-02-07 03:23:16','2020-02-07 03:23:16','','icon-money-bag','','inherit','open','closed','','icon-money-bag','','','2020-02-07 03:23:16','2020-02-07 03:23:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-money-bag.png',0,'attachment','image/png',0),(3595,1,'2020-02-07 03:23:19','2020-02-07 03:23:19','','icon-partnership','','inherit','open','closed','','icon-partnership','','','2020-02-07 03:23:19','2020-02-07 03:23:19','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-partnership.png',0,'attachment','image/png',0),(3614,1,'2020-02-07 06:44:34','2020-02-07 06:44:34','','theme23','','inherit','open','closed','','theme23-2','','','2020-02-07 06:44:34','2020-02-07 06:44:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/theme23-1.jpg',0,'attachment','image/jpeg',0),(3628,1,'2020-02-07 07:07:17','2020-02-07 07:07:17','','about-section-01','','inherit','open','closed','','about-section-01-2','','','2020-02-07 07:07:17','2020-02-07 07:07:17','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about-section-01-1.jpg',0,'attachment','image/jpeg',0),(3663,1,'2020-02-07 10:00:49','2020-02-07 10:00:49','','about4-icon1','','inherit','open','closed','','about4-icon1','','','2020-02-07 10:00:49','2020-02-07 10:00:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about4-icon1.png',0,'attachment','image/png',0),(3664,1,'2020-02-07 10:00:51','2020-02-07 10:00:51','','about4-icon2','','inherit','open','closed','','about4-icon2','','','2020-02-07 10:00:51','2020-02-07 10:00:51','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about4-icon2.png',0,'attachment','image/png',0),(3665,1,'2020-02-07 10:00:53','2020-02-07 10:00:53','','about4-icon3','','inherit','open','closed','','about4-icon3','','','2020-02-07 10:00:53','2020-02-07 10:00:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about4-icon3.png',0,'attachment','image/png',0),(3669,1,'2020-02-07 10:07:29','2020-02-07 10:07:29','','about4-bg-section1','','inherit','open','closed','','about4-bg-section1','','','2020-02-07 10:07:29','2020-02-07 10:07:29','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about4-bg-section1.png',0,'attachment','image/png',0),(3679,1,'2020-02-07 15:08:10','2020-02-07 15:08:10','','h4-about1','','inherit','open','closed','','h4-about1-2','','','2020-02-07 15:08:10','2020-02-07 15:08:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h4-about1.png',0,'attachment','image/png',0),(3681,1,'2020-02-07 15:10:20','2020-02-07 15:10:20','','about4-shape1','','inherit','open','closed','','about4-shape1','','','2020-02-07 15:10:20','2020-02-07 15:10:20','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about4-shape1.png',0,'attachment','image/png',0),(3808,1,'2020-02-08 15:00:45','2020-02-08 15:00:45','<h3>\n                        Want to learn details about us?                    \n            </h3>\n		Download our brochure for details of our work		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Download Brochure\n    </a>\n											<a href=\"https://demo.casethemes.net/consultio-marketing/\">\n							<img width=\"607\" height=\"160\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/logo-footer.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/logo-footer.png 607w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/logo-footer-300x79.png 300w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/logo-footer-600x158.png 600w\" sizes=\"(max-width: 607px) 100vw, 607px\" />								</a>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n            </ul>\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Links\n        <i></i>\n    </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-64\"><a href=\"https://demo.casethemes.net/consultio-marketing/\">Home</a></li>\n<li id=\"menu-item-65\"><a href=\"https://demo.casethemes.net/consultio-marketing/team/\">Team</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-marketing/services-v-1/\">Services</a></li>\n<li id=\"menu-item-67\"><a href=\"https://demo.casethemes.net/consultio-marketing/faq/\">FAQ</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-marketing/about/\">About us</a></li>\n<li id=\"menu-item-103\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-511\"><a href=\"https://demo.casethemes.net/consultio-marketing/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-marketing/contact/\">Contact</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-marketing/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Send us a newsletter to get update		\n	    	    <form action=\"https://demo.casethemes.net/consultio-marketing/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n	    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n	    		<label>Your mail address</label>\n	    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n	    		<input type=\"submit\" value=\"Subscribe\">\n	    </form>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"157\" height=\"46\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/app-store.png\" alt=\"\" />								</a>\n											<a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">\n							<img width=\"145\" height=\"45\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/10/google-play.png\" alt=\"\" />								</a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer - Inner Page','','publish','closed','closed','','footer-6-inner-page','','','2020-02-08 15:00:45','2020-02-08 15:00:45','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=footer&amp;p=3808',0,'footer','',0),(3823,1,'2020-02-08 15:20:31','2020-02-08 15:20:31','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 2','','publish','closed','closed','','faq_copy-3','','','2020-02-08 15:20:31','2020-02-08 15:20:31','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=3823',0,'wpcf7_contact_form','',0),(3851,1,'2020-02-08 16:16:07','2020-02-08 16:16:07','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\nReply-To: [your-email]\n\n\n\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 4','','publish','closed','closed','','home-contact-form-1_copy','','','2020-02-08 16:16:07','2020-02-08 16:16:07','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=3851',0,'wpcf7_contact_form','',0),(3852,1,'2020-02-08 16:16:38','2020-02-08 16:16:38','','contact-v4','','inherit','open','closed','','contact-v4','','','2020-02-08 16:16:38','2020-02-08 16:16:38','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png',0,'attachment','image/png',0),(3872,1,'2020-02-09 02:46:59','2020-02-09 02:46:59','<h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Year Style 2','','publish','closed','closed','','pricing-year-style-2','','','2020-02-09 02:46:59','2020-02-09 02:46:59','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=elementor_library&amp;p=3872',0,'elementor_library','',0),(3876,1,'2020-02-09 02:45:49','2020-02-09 02:45:49','<h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Month Style 2','','publish','closed','closed','','pricing-month-style-2','','','2020-02-09 02:45:49','2020-02-09 02:45:49','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=elementor_library&amp;p=3876',0,'elementor_library','',0),(3941,1,'2020-02-10 03:29:07','2020-02-10 03:29:07','','icon-pricing-01','','inherit','open','closed','','icon-pricing-01','','','2020-02-10 03:29:07','2020-02-10 03:29:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-pricing-01.png',0,'attachment','image/png',0),(3942,1,'2020-02-10 03:29:10','2020-02-10 03:29:10','','icon-pricing-02','','inherit','open','closed','','icon-pricing-02','','','2020-02-10 03:29:10','2020-02-10 03:29:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-pricing-02.png',0,'attachment','image/png',0),(3943,1,'2020-02-10 03:29:11','2020-02-10 03:29:11','','icon-pricing-03','','inherit','open','closed','','icon-pricing-03','','','2020-02-10 03:29:11','2020-02-10 03:29:11','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-pricing-03.png',0,'attachment','image/png',0),(3944,1,'2020-02-10 03:29:15','2020-02-10 03:29:15','','icon-pricing-04','','inherit','open','closed','','icon-pricing-04','','','2020-02-10 03:29:15','2020-02-10 03:29:15','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/icon-pricing-04.png',0,'attachment','image/png',0),(3982,1,'2020-02-10 06:52:43','2020-02-10 06:52:43','','footer-gallery1','','inherit','open','closed','','footer-gallery1','','','2020-02-10 06:52:43','2020-02-10 06:52:43','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery1.jpg',0,'attachment','image/jpeg',0),(3983,1,'2020-02-10 06:52:46','2020-02-10 06:52:46','','footer-gallery2','','inherit','open','closed','','footer-gallery2','','','2020-02-10 06:52:46','2020-02-10 06:52:46','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery2.jpg',0,'attachment','image/jpeg',0),(3984,1,'2020-02-10 06:52:48','2020-02-10 06:52:48','','footer-gallery3','','inherit','open','closed','','footer-gallery3','','','2020-02-10 06:52:48','2020-02-10 06:52:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery3.jpg',0,'attachment','image/jpeg',0),(3985,1,'2020-02-10 06:52:50','2020-02-10 06:52:50','','footer-gallery4','','inherit','open','closed','','footer-gallery4','','','2020-02-10 06:52:50','2020-02-10 06:52:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery4.jpg',0,'attachment','image/jpeg',0),(3986,1,'2020-02-10 06:52:53','2020-02-10 06:52:53','','footer-gallery5','','inherit','open','closed','','footer-gallery5','','','2020-02-10 06:52:53','2020-02-10 06:52:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery5.jpg',0,'attachment','image/jpeg',0),(3987,1,'2020-02-10 06:52:54','2020-02-10 06:52:54','','footer-gallery6','','inherit','open','closed','','footer-gallery6','','','2020-02-10 06:52:54','2020-02-10 06:52:54','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/footer-gallery6.jpg',0,'attachment','image/jpeg',0),(4006,1,'2020-02-10 07:28:29','2020-02-10 07:28:29','<div class=\"input-filled\">[text* company-name placeholder \"Company name\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Mobile number\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Email address\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-default\">Appionment<i class=\"fac fac-angle-right space-left\"></i></button></div>\n1\nConsultio \"[company-name]\"\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [company-name] <[your-email]>\nCompany: [company-name]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\nReply-To: [your-email]\n\n\n\n1\nConsultio \"[company-name]\"\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [company-name] <[your-email]>\nCompany: [company-name]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-marketing)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','HR Appionment','','publish','closed','closed','','main-contact-form_copy-2','','','2020-02-10 07:28:29','2020-02-10 07:28:29','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=wpcf7_contact_form&amp;p=4006',0,'wpcf7_contact_form','',0),(4110,1,'2020-02-16 14:40:13','2020-02-16 14:40:13','','logo-dark','','inherit','open','closed','','logo-dark-3','','','2020-02-16 14:40:13','2020-02-16 14:40:13','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-dark.png',0,'attachment','image/png',0),(4111,1,'2020-02-16 14:40:14','2020-02-16 14:40:14','','logo-light','','inherit','open','closed','','logo-light-3','','','2020-02-16 14:40:14','2020-02-16 14:40:14','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-light.png',0,'attachment','image/png',0),(4112,1,'2020-02-19 02:43:12','2020-02-19 02:43:12','','Default Kit','','publish','closed','closed','','default-kit-3','','','2020-02-19 02:43:12','2020-02-19 02:43:12','',0,'https://demo.casethemes.net/consultio-marketing/?elementor_library=default-kit',0,'elementor_library','',0),(4120,1,'2020-02-19 03:09:48','2020-02-19 03:09:48','','logo-footer','','inherit','open','closed','','logo-footer-2','','','2020-02-19 03:09:48','2020-02-19 03:09:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-footer.png',0,'attachment','image/png',0),(4131,1,'2020-02-19 03:23:18','2020-02-19 03:23:18','','bg-footer-top','','inherit','open','closed','','bg-footer-top','','','2020-02-19 03:23:18','2020-02-19 03:23:18','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/10/bg-footer-top.png',0,'attachment','image/png',0),(4138,1,'2020-02-19 06:42:36','2020-02-19 06:42:36','','h8-bg-video','','inherit','open','closed','','h8-bg-video','','','2020-02-19 06:42:36','2020-02-19 06:42:36','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h8-bg-video.jpg',0,'attachment','image/jpeg',0),(4145,1,'2020-02-19 07:32:27','2020-02-19 07:32:27','','logo-shape','','inherit','open','closed','','logo-shape','','','2020-02-19 07:32:27','2020-02-19 07:32:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-shape.png',0,'attachment','image/png',0),(4171,1,'2020-03-21 08:22:00','2020-03-21 08:22:00','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Web Desiging','','publish','closed','closed','','web-desiging','','','2020-03-21 08:22:00','2020-03-21 08:22:00','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=4171',0,'service','',0),(4174,1,'2020-03-21 08:23:48','2020-03-21 08:23:48','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Brand & Package','','publish','closed','closed','','brand-package','','','2020-03-21 08:23:48','2020-03-21 08:23:48','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=4174',0,'service','',0),(4177,1,'2020-03-21 08:24:52','2020-03-21 08:24:52','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Planning','','publish','closed','closed','','business-planning-2','','','2020-03-21 08:24:52','2020-03-21 08:24:52','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=4177',0,'service','',0),(4189,1,'2020-02-19 09:48:43','2020-02-19 09:48:43','','theme24','','inherit','open','closed','','theme24','','','2020-02-19 09:48:43','2020-02-19 09:48:43','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24.jpg',0,'attachment','image/jpeg',0),(4191,1,'2020-02-19 09:55:24','2020-02-19 09:55:24','','h9-bg-header','','inherit','open','closed','','h9-bg-header','','','2020-02-19 09:55:24','2020-02-19 09:55:24','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-bg-header.png',0,'attachment','image/png',0),(4201,1,'2020-02-19 14:18:15','2020-02-19 14:18:15','','h9-about','','inherit','open','closed','','h9-about','','','2020-02-19 14:18:15','2020-02-19 14:18:15','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about.png',0,'attachment','image/png',0),(4208,1,'2020-02-19 14:33:51','2020-02-19 14:33:51','','h9-icon1','','inherit','open','closed','','h9-icon1','','','2020-02-19 14:33:51','2020-02-19 14:33:51','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon1.png',0,'attachment','image/png',0),(4209,1,'2020-02-19 14:33:53','2020-02-19 14:33:53','','h9-icon2','','inherit','open','closed','','h9-icon2','','','2020-02-19 14:33:53','2020-02-19 14:33:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon2.png',0,'attachment','image/png',0),(4223,1,'2020-02-19 15:45:18','2020-02-19 15:45:18','','h9-bg-section-01','','inherit','open','closed','','h9-bg-section-01','','','2020-02-19 15:45:18','2020-02-19 15:45:18','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-bg-section-01.png',0,'attachment','image/png',0),(4227,1,'2020-02-19 15:57:42','2020-02-19 15:57:42','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (http://demoweblinks.in/ctthemes/csuti-coach)\nReply-To: [your-email]\n\n\n\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (http://demoweblinks.in/ctthemes/csuti-coach)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Home Contact Form','','publish','closed','closed','','home-contact-form','','','2020-02-19 15:57:42','2020-02-19 15:57:42','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=wpcf7_contact_form&amp;p=4227',0,'wpcf7_contact_form','',0),(4231,1,'2020-02-19 16:37:18','2020-02-19 16:37:18','','h9-service-icon1','','inherit','open','closed','','h9-service-icon1','','','2020-02-19 16:37:18','2020-02-19 16:37:18','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon1.png',0,'attachment','image/png',0),(4232,1,'2020-02-19 16:37:20','2020-02-19 16:37:20','','h9-service-icon2','','inherit','open','closed','','h9-service-icon2','','','2020-02-19 16:37:20','2020-02-19 16:37:20','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon2.png',0,'attachment','image/png',0),(4233,1,'2020-02-19 16:37:21','2020-02-19 16:37:21','','h9-service-icon3','','inherit','open','closed','','h9-service-icon3','','','2020-02-19 16:37:21','2020-02-19 16:37:21','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon3.png',0,'attachment','image/png',0),(4234,1,'2020-02-19 16:37:22','2020-02-19 16:37:22','','h9-service-icon4','','inherit','open','closed','','h9-service-icon4','','','2020-02-19 16:37:22','2020-02-19 16:37:22','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon4.png',0,'attachment','image/png',0),(4235,1,'2020-02-19 16:37:23','2020-02-19 16:37:23','','h9-service-icon5','','inherit','open','closed','','h9-service-icon5','','','2020-02-19 16:37:23','2020-02-19 16:37:23','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon5.png',0,'attachment','image/png',0),(4236,1,'2020-02-19 16:37:25','2020-02-19 16:37:25','','h9-service-icon6','','inherit','open','closed','','h9-service-icon6','','','2020-02-19 16:37:25','2020-02-19 16:37:25','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon6.png',0,'attachment','image/png',0),(4265,1,'2020-02-20 07:07:44','2020-02-20 07:07:44','','about-testimonial','','inherit','open','closed','','about-testimonial','','','2020-02-20 07:07:44','2020-02-20 07:07:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/about-testimonial.jpg',0,'attachment','image/jpeg',0),(4336,1,'2020-07-25 08:08:49','2020-07-25 08:08:49','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2','','','2020-07-25 08:08:49','2020-07-25 08:08:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/07/woocommerce-placeholder.png',0,'attachment','image/png',0),(4337,1,'2020-07-25 09:20:21','2020-07-25 09:20:21','<h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-marketing/\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-tax/\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                            Software                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                            Software                                    </a></li>\n            </ul>','Demos','','publish','closed','closed','','demos-2','','','2020-07-25 09:20:21','2020-07-25 09:20:21','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=ct-mega-menu&amp;p=4337',0,'ct-mega-menu','',0),(4339,1,'2020-07-25 09:20:33','2020-07-25 09:20:33','<h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                            Testimonials                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                            Blog Slider                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                            Portfolio Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                            Service Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                            Clients                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                            History                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                            Video Button                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                            Columns                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                            Row background                                    </a></li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                            Team Variations                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                            Buttons                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                            Tabs & Tours                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                            Accordions & Toggles                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                            Google Maps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                            Contact Forms 7                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                            Dividers                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                            Pricing Tables                                    </a></li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                            Counters                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                            Progress Bars                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                            Icon With Text                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                            Icon Grid                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                            Image Box Fancy                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                            Cover Boxes                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                            Newsletters                                    </a></li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                            Custom Fonts                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                            Highlights                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                            Blockquote                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                            Dropcaps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                            Message Box                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                            Lists                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                            Titles                                    </a></li>\n            </ul>','Elements','','publish','closed','closed','','elements-2','','','2020-07-25 09:20:33','2020-07-25 09:20:33','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=ct-mega-menu&amp;p=4339',0,'ct-mega-menu','',0),(4348,1,'2020-07-25 09:35:41','2020-07-25 09:35:41','<a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n										<img width=\"94\" height=\"122\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/logo-shape.png\" alt=\"\" />											\n	    <h3>\n                        Prosper in this volatile market funding.                    \n            </h3>\n		Without consulting, plans stay as plans. so need consulting for marketing		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/team-v-2/\" data-wow-delay=\"ms\">\n                Our team\n    </a>\n			Featured Services\n	    <h3>\n                        The fields where we provide our services                    \n            </h3>\n		<b>Service Marketing:</b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.		\n                                    <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"https://demo.casethemes.net/consultio-marketing/service/digital-marketing/\"></a>\n                                            We develop the relationships that underpin the next phase in your organisation’s&hellip;                                        \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/digital-marketing/\">Digital Marketing</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/service/digital-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme24-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme24\" title=\"theme24\" />                                    <a href=\"https://demo.casethemes.net/consultio-marketing/service/content-marketing/\"></a>\n                                            The development of your next business plan will be executed by a&hellip;                                        \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/content-marketing/\">Content Marketing</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/service/content-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-05\" title=\"theme-05\" />                                    <a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-marketing/\"></a>\n                                            What separates York agency from all other web design agencies is the&hellip;                                        \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-marketing/\">SEO Marketing</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\"></a>\n                                            Graphic design is the process of visual and problem-solving using one or&hellip;                                        \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">\n                                Read more\n                            </a>\n										<img width=\"630\" height=\"667\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-about.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-about.png 630w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-about-283x300.png 283w, https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-about-600x635.png 600w\" sizes=\"(max-width: 630px) 100vw, 630px\" />											\n			About us\n	    <h3>\n                        We are Consultio, stablished Since\n<small>1999.</small>                    \n            </h3>\n		When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.		\n            <img width=\"56\" height=\"57\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-icon1.png\" alt=\"\" />        \n        <h3>\n            Our Mission        </h3>\n        Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\n            <img width=\"56\" height=\"54\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/h9-icon2.png\" alt=\"\" />        \n        <h3>\n            Our Value        </h3>\n        A client once told us that where others focus on one star one issue we see the whole sky. \n			Services\n	    <h3>\n                        All services which we have provided                    \n            </h3>\n		Definition of <b>Provide Services. Provide Services</b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance</b> to a person, business or other entity.		\n                                <img width=\"150\" height=\"148\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon1.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/social-media-marketing/\">Social Media Marketing</a></h3>\n                                    Social media marketing is the use of social media platforms to connect with your audience to build your brand, increase sales, and drive website traffic.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/social-media-marketing/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon2.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/search-engine-optimization/\">Search Engine Optimization</a></h3>\n                                    Looking for higher rankings and traffic through Search Engine Optimization? The Beginner\'s Guide to SEO has been read over 10 million times.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/search-engine-optimization/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon3.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/web-development/\">Web Development</a></h3>\n                                    Front-end web developers are responsible for how a website looks. They create the site\'s layout and integrate graphics, applications.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/web-development/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon4.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/ppc-advertising/\">PPC Advertising</a></h3>\n                                    At a minimum, marketing the PPP requires advertising the launch is an online advertising method that plays an audio advertisement on websites.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/ppc-advertising/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon5.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/apps-development/\">Apps Development</a></h3>\n                                    Build powerful, process-based applications to solve everyday business problems. Join 4 million+ users.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/apps-development/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/h9-service-icon6.png\" alt=\"\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/content-marketing-2/\">Content Marketing</a></h3>\n                                    Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined.                                \n                        <a href=\"https://demo.casethemes.net/consultio-marketing/service/content-marketing-2/\"></a>\n        <a href=\"https://demo.casethemes.net/consultio-marketing/services-v-1/\" data-wow-delay=\"ms\">\n                View more\n    </a>\n			Case Studies\n	    <h3>\n                        A case study focuses on a single event.                    \n            </h3>\n		A <b>case study</b> is an in-depth study of one person, group, or event. Much of Freud&#8217;s work and theories were developed through the use of individual <b>case studies.</b>		\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/strategy-for-norway-pension-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-12-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-marketing/case-study-category/sustainability/\" rel=\"tag\">Sustainability</a>                            \n                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/strategy-for-norway-pension-fund-global/\"></a>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-08-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-marketing/case-study-category/investing/\" rel=\"tag\">Investing</a>                            \n                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"></a>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/low-carbon-investing-commonfund-gpsu/\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-marketing/case-study-category/marketing/\" rel=\"tag\">Marketing</a>                            \n                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/low-carbon-investing-commonfund-gpsu/\"></a>\n                            <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/on-behalf-of-world-bank-an-advocom-group/\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-11-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-11\" title=\"theme-11\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-marketing/case-study-category/strategy/\" rel=\"tag\">Strategy</a>                            \n                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/case-study/on-behalf-of-world-bank-an-advocom-group/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"https://demo.casethemes.net/consultio-marketing/case-study/on-behalf-of-world-bank-an-advocom-group/\"></a>\n			Testimonils\n	    <h3>\n                        To review means to look back over something.                     \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n			Steps\n	    <h3>\n                        Take some easy steps for processing                    \n            </h3>\n		Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.		\n                        1\n                                                    <h3>Contact us first</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Contact us</a>\n                        2\n                                                    <h3>Consult with us</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Appoinment</a>\n                        3\n                                                    <h3>Place Order</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Order now</a>\n                        4\n                                                    <h3>Make Payment</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Payment</a>\n			Contact\n	    <h3>\n                        Want to do business with us?                    \n            </h3>\n		In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/contact/\" data-wow-delay=\"ms\">\n                Contact us\n    </a>\n                        <i>Our Value</i>\n                        <i>Our Mission</i>\n                        <i>Payroll Service</i>\n                            We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            Our professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                            People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n			Fun facts\n	    <h3>\n                        We have achieved great Funfacts.                    \n            </h3>\n                                1\n                k\n                            Happy <cite>Clients</cite>\n                                1\n                +\n                            Expert <cite>Team</cite>\n                                1\n                +\n                            Awards <cite>Winner</cite>\n                                1\n                +\n                            Positive <cite>Reviews</cite>\n			Pricing\n	    <h3>\n                        We offer the best price for you!                    \n            </h3>\n		Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business&#8217;s marketing plan.		\n                                                            Monthly        \n                                                            Yearly Save 20%        \n                            <style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#0A0462;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3876 .elementor-element.elementor-element-5f276f89{width:50%;}.elementor-3876 .elementor-element.elementor-element-8a7b665{width:50%;}.elementor-3876 .elementor-element.elementor-element-f582dc4{width:50%;}.elementor-3876 .elementor-element.elementor-element-4b28e043{width:50%;}}</style>		\n							<section data-id=\"33a40038\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $99\n            <img width=\"58\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-01.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n            <img width=\"75\" height=\"57\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-02.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n            <img width=\"87\" height=\"58\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-03.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n            <img width=\"81\" height=\"64\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-04.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n		</section>\n                            <style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#0A0462;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3872 .elementor-element.elementor-element-43484ebe{width:50%;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee{width:50%;}.elementor-3872 .elementor-element.elementor-element-609a9e8e{width:50%;}.elementor-3872 .elementor-element.elementor-element-12576590{width:50%;}}</style>		\n							<section data-id=\"7f5cbd63\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $499\n            <img width=\"58\" height=\"56\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-01.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n            <img width=\"75\" height=\"57\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-02.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n            <img width=\"87\" height=\"58\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-03.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n            <img width=\"81\" height=\"64\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2020/02/icon-pricing-04.png\" alt=\"\" />        \n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n		</section>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home Onepage','','publish','closed','closed','','home-onepage-3','','','2020-07-25 09:35:41','2020-07-25 09:35:41','',0,'https://demo.casethemes.net/consultio-marketing/?page_id=4348',0,'page','',0),(4355,1,'2020-03-27 02:50:37','2020-03-27 02:50:37','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 2 Columns','','publish','closed','closed','','portfolio-grid-2-columns','','','2020-03-27 02:50:37','2020-03-27 02:50:37','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=4355',0,'page','',0),(4357,1,'2020-03-27 02:50:54','2020-03-27 02:50:54','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 3 Columns','','publish','closed','closed','','portfolio-grid-3-columns','','','2020-03-27 02:50:54','2020-03-27 02:50:54','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=4357',0,'page','',0),(4359,1,'2020-03-27 02:51:12','2020-03-27 02:51:12','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 4 Columns Wide','','publish','closed','closed','','portfolio-grid-4-columns-wide','','','2020-03-27 02:51:12','2020-03-27 02:51:12','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=4359',0,'page','',0),(4509,1,'2020-04-22 03:50:13','2020-04-22 03:50:13','.ct-hidden-sidebar section.widget.logo-hidden-sidebar img {\n	max-height: 50px;\n}','csuti','','publish','closed','closed','','csuti','','','2020-04-22 03:50:13','2020-04-22 03:50:13','',0,'https://demo.casethemes.net/consultio-finance4/csuti/',0,'custom_css','',0),(4540,1,'2020-04-22 04:21:18','2020-04-22 04:21:18','','Default Kit','','publish','closed','closed','','default-kit','','','2020-04-22 04:21:18','2020-04-22 04:21:18','',0,'https://demo.casethemes.net/consultio-finance4/?elementor_library=default-kit',0,'elementor_library','',0),(4587,1,'2020-04-22 08:21:25','2020-04-22 08:21:25','<h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo1.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo17.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo18.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo2.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo16.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business3/\">\n                                                                                                                                Business 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo21.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo12.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo13.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo14.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-agency/\">\n                                                                                                                                Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo22.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo7.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo8.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo9.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo10.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo5.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo6.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo3.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo4.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-finance4/\">\n                                                                                                                                Finance 4                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo27.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital-marketing/\">\n                                                                                                                                Digital Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo26.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital/\">\n                                                                                                                                Digital Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo24.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-immigration/\">\n                                                                                                                                Immigration                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo23.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo11.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo15.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo19.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo20.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo1.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo17.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo18.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo2.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo16.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business3/home-onepage\">\n                                                                                                                                Business 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo21.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo12.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo13.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo14.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-agency/home-onepage\">\n                                                                                                                                Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo22.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo7.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo8.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo9.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo10.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo5.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo6.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo3.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo4.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-finance4/home-onepage\">\n                                                                                                                                Finance 4                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo27.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital-marketing/home-onepage\">\n                                                                                                                                Digital Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo26.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital/home-onepage\">\n                                                                                                                                Digital Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo24.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-immigration/home-onepage\">\n                                                                                                                                Immigration                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo23.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo15.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo11.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo19.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo20.jpg\" />\n                                            </a>\n                </li>\n            </ul>','Demos','','publish','closed','closed','','demos','','','2020-04-22 08:21:25','2020-04-22 08:21:25','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=ct-mega-menu&amp;p=4587',0,'ct-mega-menu','',0),(4639,1,'2020-05-07 07:38:27','2020-05-07 07:38:27','','bg-page-title-u','','inherit','open','closed','','bg-page-title-u','','','2020-05-07 07:38:27','2020-05-07 07:38:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/05/bg-page-title-u-1.jpg',0,'attachment','image/jpeg',0),(4680,1,'2020-06-11 14:41:57','2020-06-11 14:41:57','<div class=\"field-group\">\n	<div class=\"field-input\">\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n 	</div>\n 	<div class=\"field-input\">\n		<input type=\"submit\" value=\"Subscribe\" />\n	</div>\n</div>','Form 1','','publish','closed','closed','','form-1','','','2020-06-11 14:41:57','2020-06-11 14:41:57','',0,'https://demo.casethemes.net/consultio-finance4/mc4wp-form/form-1/',0,'mc4wp-form','',0),(4703,1,'2020-05-08 03:57:30','2020-05-08 03:57:30','','update-blog1','','inherit','open','closed','','update-blog1','','','2020-05-08 03:57:30','2020-05-08 03:57:30','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog1-1.jpg',0,'attachment','image/jpeg',0),(4704,1,'2020-05-08 03:57:32','2020-05-08 03:57:32','','update-blog2','','inherit','open','closed','','update-blog2','','','2020-05-08 03:57:32','2020-05-08 03:57:32','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog2-1.jpg',0,'attachment','image/jpeg',0),(4705,1,'2020-05-08 03:57:33','2020-05-08 03:57:33','','update-blog3','','inherit','open','closed','','update-blog3','','','2020-05-08 03:57:33','2020-05-08 03:57:33','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg',0,'attachment','image/jpeg',0),(4715,1,'2020-05-08 08:57:16','2020-05-08 08:57:16','','update-service-01','','inherit','open','closed','','update-service-01','','','2020-05-08 08:57:16','2020-05-08 08:57:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-01.jpg',0,'attachment','image/jpeg',0),(4716,1,'2020-05-08 08:58:57','2020-05-08 08:58:57','','update-service-02','','inherit','open','closed','','update-service-02','','','2020-05-08 08:58:57','2020-05-08 08:58:57','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg',0,'attachment','image/jpeg',0),(4801,1,'2020-05-09 08:55:25','2020-05-09 08:55:25','','corporate-portfolio1','','inherit','open','closed','','corporate-portfolio1','','','2020-05-09 08:55:25','2020-05-09 08:55:25','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/corporate-portfolio1-1.jpg',0,'attachment','image/jpeg',0),(4802,1,'2020-05-09 08:55:27','2020-05-09 08:55:27','','corporate-portfolio2','','inherit','open','closed','','corporate-portfolio2','','','2020-05-09 08:55:27','2020-05-09 08:55:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/corporate-portfolio2-1.jpg',0,'attachment','image/jpeg',0),(4803,1,'2020-05-09 08:55:29','2020-05-09 08:55:29','','corporate-portfolio3','','inherit','open','closed','','corporate-portfolio3','','','2020-05-09 08:55:29','2020-05-09 08:55:29','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/corporate-portfolio3-1.jpg',0,'attachment','image/jpeg',0),(4804,1,'2020-05-09 08:55:30','2020-05-09 08:55:30','','corporate-portfolio4','','inherit','open','closed','','corporate-portfolio4','','','2020-05-09 08:55:30','2020-05-09 08:55:30','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/corporate-portfolio4.jpg',0,'attachment','image/jpeg',0),(4805,1,'2020-05-09 08:55:31','2020-05-09 08:55:31','','corporate-portfolio5','','inherit','open','closed','','corporate-portfolio5','','','2020-05-09 08:55:31','2020-05-09 08:55:31','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/corporate-portfolio5.jpg',0,'attachment','image/jpeg',0),(4931,1,'2020-02-12 03:26:05','2020-02-12 03:26:05','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/business-planning-2/\">Business Planning</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/brand-package/\">Brand &amp; Package</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-finance4/service/web-desiging/\">Web Desiging</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/website-designing/\">Website Designing</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/lifetime-updates/\">Lifetime Updates</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/no-coding-skills/\">No Coding Skills</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/global-insights/\">Global Insights</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-finance4/service/insurance-service/\">Insurance Service</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /> </a>','SEO Optimization','','publish','closed','closed','','seo-optimization','','','2020-02-12 03:26:05','2020-02-12 03:26:05','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=service&amp;p=4931',0,'service','',0),(4940,1,'2020-06-17 07:21:41','2020-06-17 07:21:41','','update-theme1','','inherit','open','closed','','update-theme1','','','2020-06-17 07:21:41','2020-06-17 07:21:41','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/update-theme1-1.jpg',0,'attachment','image/jpeg',0),(4959,1,'2020-06-20 09:26:50','2020-06-20 09:26:50','','client-img1','','inherit','open','closed','','client-img1','','','2020-06-20 09:26:50','2020-06-20 09:26:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png',0,'attachment','image/png',0),(4960,1,'2020-06-20 09:26:53','2020-06-20 09:26:53','','client-img2','','inherit','open','closed','','client-img2','','','2020-06-20 09:26:53','2020-06-20 09:26:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png',0,'attachment','image/png',0),(4961,1,'2020-06-20 09:26:54','2020-06-20 09:26:54','','client-img3','','inherit','open','closed','','client-img3','','','2020-06-20 09:26:54','2020-06-20 09:26:54','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png',0,'attachment','image/png',0),(4962,1,'2020-06-20 09:26:56','2020-06-20 09:26:56','','client-img4','','inherit','open','closed','','client-img4','','','2020-06-20 09:26:56','2020-06-20 09:26:56','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png',0,'attachment','image/png',0),(4963,1,'2020-06-20 09:26:59','2020-06-20 09:26:59','','client-img5','','inherit','open','closed','','client-img5','','','2020-06-20 09:26:59','2020-06-20 09:26:59','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png',0,'attachment','image/png',0),(5003,1,'2020-06-23 14:15:28','2020-06-23 14:15:28','no\na:1:{i:0;s:0:\"\";}\nnavigation_horizontal_squaren\n0\n#0073aa\n\n\nin_fadeIn next_fadeInRight back_fadeInLeft\nvertical\n0\n#0073aa\noff\n\n<div class=\"row\">\r\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\r\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\r\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\r\n</div>\r\n<div class=\"row\">\r\n	\r\n	<div class=\"input-filled col-lg-12 col-md-12\">[select* your-service \"Services\" \"NursingJobsUK\" \"Study Abroad\"]</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\r\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block hover-white\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\r\n</div>\n1\nEaloor Consultancy \"[your-service]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name]  <[your-email]>\r\nPhone: [your-phone]\r\nService: [your-service] \r\nMessage : [your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Ealoor Consultancy\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\nPhone: [your-phone]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 3','','publish','closed','closed','','contact-version-2_copy','','','2022-01-21 12:27:28','2022-01-21 12:27:28','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&#038;p=5003',0,'wpcf7_contact_form','',0),(5005,1,'2020-06-23 14:17:31','2020-06-23 14:17:31','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Phone number...\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[select* your-service \"Choose services*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-paper-plane space-right\"></i>Get a Quote</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\n\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-finance4)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 1','','publish','closed','closed','','contact-version-2_copy-2','','','2020-06-23 14:17:31','2020-06-23 14:17:31','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=5005',0,'wpcf7_contact_form','',0),(5098,1,'2020-06-24 15:39:30','2020-06-24 15:39:30','','marker','','inherit','open','closed','','marker','','','2020-06-24 15:39:30','2020-06-24 15:39:30','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/marker-1.png',0,'attachment','image/png',0),(5137,1,'2020-07-25 08:07:12','2020-07-25 08:07:12','<h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                            Testimonials                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                            Blog Slider                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                            Portfolio Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                            Service Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                            Clients                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                            History                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                            Video Button                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                            Columns                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                            Row background                                    </a></li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                            Team Variations                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                            Buttons                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                            Tabs & Tours                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                            Accordions & Toggles                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                            Google Maps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                            Contact Forms 7                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                            Dividers                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                            Pricing Tables                                    </a></li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                            Counters                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                            Progress Bars                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                            Icon With Text                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                            Icon Grid                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                            Image Box Fancy                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                            Cover Boxes                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                            Newsletters                                    </a></li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                            Custom Fonts                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                            Highlights                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                            Blockquote                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                            Dropcaps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                            Message Box                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                            Lists                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                            Titles                                    </a></li>\n            </ul>','Elements','','publish','closed','closed','','elements','','','2020-07-25 08:07:12','2020-07-25 08:07:12','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=ct-mega-menu&amp;p=5137',0,'ct-mega-menu','',0),(5147,1,'2020-07-25 08:11:51','2020-07-25 08:11:51','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                        Our Awesome Services                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/penalty-recovery/\"></a>\n                        About Our Company                                \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n	    <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n	    <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/csuti-finance4/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re driven to make the complex simple.\n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Pricing                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n	    <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            4 Nov, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n	    <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <!-- Mailchimp for WordPress v4.8.3 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id=\"mc4wp-form-1\" method=\"post\" data-id=\"4680\" data-name=\"Form 1\" >\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n		<input type=\"submit\" value=\"Subscribe\" />\n<label style=\"display: none !important;\">Leave this field empty if you\'re human: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" /></label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1617383911\" /><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"4680\" /><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" /></form><!-- / Mailchimp for WordPress Plugin -->    \n		*I have read the Privacy Policy and agree to its terms.		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home Onepage','','publish','closed','closed','','home-onepage','','','2020-07-25 08:11:51','2020-07-25 08:11:51','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=5147',0,'page','',0),(5163,1,'2020-08-07 07:01:59','2020-08-07 07:01:59','','favicon','','inherit','open','closed','','favicon-2','','','2020-08-07 07:01:59','2020-08-07 07:01:59','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/favicon-1.png',0,'attachment','image/png',0),(5164,1,'2020-08-07 07:02:00','2020-08-07 07:02:00','','logo-dark','','inherit','open','closed','','logo-dark-2','','','2020-08-07 07:02:00','2020-08-07 07:02:00','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-dark-1.png',0,'attachment','image/png',0),(5165,1,'2020-08-07 07:02:02','2020-08-07 07:02:02','','logo-light','','inherit','open','closed','','logo-light-2','','','2020-08-07 07:02:02','2020-08-07 07:02:02','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-light-1.png',0,'attachment','image/png',0),(5177,1,'2020-08-07 09:04:36','2020-08-07 09:04:36','','bg-banner1','','inherit','open','closed','','bg-banner1','','','2020-08-07 09:04:36','2020-08-07 09:04:36','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/bg-banner1-1.png',0,'attachment','image/png',0),(5181,1,'2020-08-07 09:31:34','2020-08-07 09:31:34','','man1','','inherit','open','closed','','man1','','','2020-08-07 09:31:34','2020-08-07 09:31:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/man1-1.png',0,'attachment','image/png',0),(5204,1,'2020-08-07 10:01:42','2020-08-07 10:01:42','','logo-footer','','inherit','open','closed','','logo-footer','','','2020-08-07 10:01:42','2020-08-07 10:01:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png',0,'attachment','image/png',0),(5220,1,'2020-08-10 02:09:48','2020-08-10 02:09:48','','service-icon1','','inherit','open','closed','','service-icon1','','','2020-08-10 02:09:48','2020-08-10 02:09:48','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon1-1.png',0,'attachment','image/png',0),(5221,1,'2020-08-10 02:09:50','2020-08-10 02:09:50','','service-icon2','','inherit','open','closed','','service-icon2','','','2020-08-10 02:09:50','2020-08-10 02:09:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon2-1.png',0,'attachment','image/png',0),(5222,1,'2020-08-10 02:09:51','2020-08-10 02:09:51','','service-icon3','','inherit','open','closed','','service-icon3','','','2020-08-10 02:09:51','2020-08-10 02:09:51','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon3-1.png',0,'attachment','image/png',0),(5223,1,'2020-08-10 02:09:52','2020-08-10 02:09:52','','service-icon4','','inherit','open','closed','','service-icon4','','','2020-08-10 02:09:52','2020-08-10 02:09:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon4-1.png',0,'attachment','image/png',0),(5224,1,'2020-08-10 02:09:54','2020-08-10 02:09:54','','service-icon5','','inherit','open','closed','','service-icon5','','','2020-08-10 02:09:54','2020-08-10 02:09:54','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon5-1.png',0,'attachment','image/png',0),(5225,1,'2020-08-10 02:09:55','2020-08-10 02:09:55','','service-icon6','','inherit','open','closed','','service-icon6','','','2020-08-10 02:09:55','2020-08-10 02:09:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon6-1.png',0,'attachment','image/png',0),(5243,1,'2020-08-10 03:24:07','2020-08-10 03:24:07','','video-intro','','inherit','open','closed','','video-intro','','','2020-08-10 03:24:07','2020-08-10 03:24:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg',0,'attachment','image/jpeg',0),(5271,1,'2020-08-10 08:00:55','2020-08-10 08:00:55','','b2-testimonial-01','','inherit','open','closed','','b2-testimonial-01','','','2020-08-10 08:00:55','2020-08-10 08:00:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg',0,'attachment','image/jpeg',0),(5292,1,'2020-08-10 09:14:52','2020-08-10 09:14:52','','newsletter-consulting','','inherit','open','closed','','newsletter-consulting','','','2020-08-10 09:14:52','2020-08-10 09:14:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png',0,'attachment','image/png',0),(5298,1,'2020-08-11 08:19:31','2020-08-11 08:19:31','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-08-11 08:19:31','2020-08-11 08:19:31','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/woocommerce-placeholder.png',0,'attachment','image/png',0),(5300,1,'2020-08-11 08:23:50','2020-08-11 08:23:50','','b3-team-01','','inherit','open','closed','','b3-team-01','','','2020-08-11 08:23:50','2020-08-11 08:23:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg',0,'attachment','image/jpeg',0),(5301,1,'2020-08-11 08:23:52','2020-08-11 08:23:52','','b3-team-02','','inherit','open','closed','','b3-team-02','','','2020-08-11 08:23:52','2020-08-11 08:23:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg',0,'attachment','image/jpeg',0),(5316,1,'2020-08-11 09:23:14','2020-08-11 09:23:14','','bg-section-01','','inherit','open','closed','','bg-section-01-2','','','2020-08-11 09:23:14','2020-08-11 09:23:14','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/bg-section-01-1.png',0,'attachment','image/png',0),(5326,1,'2020-08-11 16:12:57','2020-08-11 16:12:57','','contact-image-left','','inherit','open','closed','','contact-image-left-2','','','2020-08-11 16:12:57','2020-08-11 16:12:57','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/contact-image-left-1.jpg',0,'attachment','image/jpeg',0),(5329,1,'2020-08-11 16:26:08','2020-08-11 16:26:08','','contact-image-right','','inherit','open','closed','','contact-image-right','','','2020-08-11 16:26:08','2020-08-11 16:26:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/contact-image-right-1.jpg',0,'attachment','image/jpeg',0),(5348,1,'2020-10-02 01:50:32','2020-10-02 01:50:32','','Appionment','','publish','closed','closed','','appionment','','','2020-10-02 01:50:32','2020-10-02 01:50:32','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=5348',0,'page','',0),(5357,1,'2020-08-12 03:01:46','2020-08-12 03:01:46','<h3>\n                        Prosper in this volatile market funding.                    \n            </h3>\n		We have uncovered the five essential elements to maximizing its value.		\n        <a href=\"#\" data-wow-delay=\"500ms\">\n                Get Started\n    </a>\n                        <img width=\"490\" height=\"773\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/man1.png\" alt=\"\" loading=\"lazy\" />            		\n                                1\n                            Team member\n                                1\n                            Active <br/>cases\n                                1\n                            Client’s reviews\n			Services\n	    <h3>\n                        Our <b>platform</b> connects companies with displaced <b>workforces</b>                    \n            </h3>\n                            <img width=\"176\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/strategy-consulting-2/\">Strategy &#038; Consulting</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/strategy-consulting-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/applied-intelligence-2/\">Applied Intelligence</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/applied-intelligence-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/supply-chain-operations/\">Supply Chain &#038; Operations</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/supply-chain-operations/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"188\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon4.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/insight-growth/\">Insight &#038; Growth</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/insight-growth/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"186\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon5.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/software-engineering/\">Software Engineering</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/software-engineering/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"197\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon6.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-process/\">Business Process</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/business-process/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"176\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">Business Strategy</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/global-insights/\">Global Insights</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/global-insights/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">\n                                    Read more                                \n                            </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n			About us\n	    <h3>\n                        How we work with our clients with our capability.                    \n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n        <h3>\n            Market Management        </h3>\n        Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n        <h3>\n            Business Analysis        </h3>\n        Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n			FAQ\n	    <h3>\n                        Some faq for more inquiry                    \n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b2-testimonial-01.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"https://demo.casethemes.net/consultio-business3/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/newsletter-consulting.png\" alt=\"\" loading=\"lazy\" />				\n			Team member\n	    <h3>\n                        Our expert team member will help you!                    \n            </h3>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b3-team-01.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b3-team-02.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<form action=\"/ctthemes/csuti-business3/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n			Latest Blog\n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/logo-footer.png\" alt=\"\" loading=\"lazy\" />        </a>','Home Page','','publish','closed','closed','','home-page','','','2020-08-12 03:01:46','2020-08-12 03:01:46','',0,'https://demo.casethemes.net/consultio-business3/?elementor_library=home-page',0,'elementor_library','',0),(5363,1,'2020-08-12 03:06:46','2020-08-12 03:06:46','<h3>\n                        Prosper in this volatile market funding.                    \n            </h3>\n		We have uncovered the five essential elements to maximizing its value.		\n        <a href=\"#\" data-wow-delay=\"500ms\">\n                Get Started\n    </a>\n                        <img width=\"490\" height=\"773\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/man1.png\" alt=\"\" loading=\"lazy\" />            		\n                                1\n                            Team member\n                                1\n                            Active <br/>cases\n                                1\n                            Client’s reviews\n			Services\n	    <h3>\n                        Our <b>platform</b> connects companies with displaced <b>workforces</b>                    \n            </h3>\n                            <img width=\"176\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/strategy-consulting-2/\">Strategy &#038; Consulting</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/strategy-consulting-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/applied-intelligence-2/\">Applied Intelligence</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/applied-intelligence-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/supply-chain-operations/\">Supply Chain &#038; Operations</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/supply-chain-operations/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"188\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon4.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/insight-growth/\">Insight &#038; Growth</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/insight-growth/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"186\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon5.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/software-engineering/\">Software Engineering</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/software-engineering/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"197\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon6.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-process/\">Business Process</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/business-process/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"176\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon1.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">Business Strategy</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon2.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/global-insights/\">Global Insights</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/global-insights/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/03/service-icon3.png\" alt=\"\" loading=\"lazy\" />                        \n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">\n                                    Read more                                \n                            </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n			About us\n	    <h3>\n                        How we work with our clients with our capability.                    \n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n        <h3>\n            Market Management        </h3>\n        Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n        <h3>\n            Business Analysis        </h3>\n        Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n			FAQ\n	    <h3>\n                        Some faq for more inquiry                    \n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b2-testimonial-01.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"https://demo.casethemes.net/consultio-business3/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/newsletter-consulting.png\" alt=\"\" loading=\"lazy\" />				\n			Team member\n	    <h3>\n                        Our expert team member will help you!                    \n            </h3>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b3-team-01.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/b3-team-02.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"#\"></a>\n                                                                                    <a href=\"\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<form action=\"/ctthemes/csuti-business3/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n			Latest Blog\n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-business3/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"https://demo.casethemes.net/consultio-business3/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2020/08/logo-footer.png\" alt=\"\" loading=\"lazy\" />        </a>','Home Onepage','','publish','closed','closed','','home-onepage-2','','','2020-08-12 03:06:46','2020-08-12 03:06:46','',0,'https://demo.casethemes.net/consultio-business3/?page_id=5363',0,'page','',0),(5534,1,'2020-10-12 16:14:21','2020-10-12 16:14:21','','ud-blog1','','inherit','open','closed','','ud-blog1','','','2020-10-12 16:14:21','2020-10-12 16:14:21','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/ud-blog1.jpg',0,'attachment','image/jpeg',0),(5976,1,'2020-12-09 01:59:37','2020-12-09 01:59:37','','digital-team-01','','inherit','open','closed','','digital-team-01','','','2020-12-09 01:59:37','2020-12-09 01:59:37','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/12/digital-team-01.jpg',0,'attachment','image/jpeg',0),(5977,1,'2020-12-09 01:59:38','2020-12-09 01:59:38','','digital-team-02','','inherit','open','closed','','digital-team-02','','','2020-12-09 01:59:38','2020-12-09 01:59:38','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/12/digital-team-02.jpg',0,'attachment','image/jpeg',0),(5978,1,'2020-12-09 01:59:40','2020-12-09 01:59:40','','digital-team-03','','inherit','open','closed','','digital-team-03','','','2020-12-09 01:59:40','2020-12-09 01:59:40','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/12/digital-team-03.jpg',0,'attachment','image/jpeg',0),(5979,1,'2020-12-09 01:59:42','2020-12-09 01:59:42','','digital-team-04','','inherit','open','closed','','digital-team-04','','','2020-12-09 01:59:42','2020-12-09 01:59:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/12/digital-team-04.jpg',0,'attachment','image/jpeg',0),(6068,1,'2020-12-09 07:24:52','2020-12-09 07:24:52','<div class=\"row\">\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-user\"></i>Name:</label>[text* your-name placeholder \"Jhon Doe\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-phone\"></i>Phone:</label>[text* your-phone placeholder \"+88213567945\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-envelope\"></i>Email:</label>[email* your-email placeholder \"sample@mail.com\"]</div>\n	<div class=\"input-filled col-12\"><label><i class=\"fac fac-toolbox\"></i>Service:</label>[select* your-service \"Service\" \"Business Consulting\" \"Startup Business\" \"Leadership Work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn rev-btn-animate1\">Get a Free Consultation<i class=\"flaticonv2 flaticonv2-right-arrow\"></i></button></div>\n	<div class=\"input-filled col-12 form-footer\">Your personal information will be hidden</div>\n</div>\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <casethemes.net@gmail.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\nService: [your-service]\nPhone: [your-phone]\n\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <casethemes.net@gmail.com>\n[your-email]\nService: [your-service]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Business Contact Form','','publish','closed','closed','','digital-contact-form','','','2020-12-09 07:24:52','2020-12-09 07:24:52','',0,'https://demo.casethemes.net/consultio-finance4/?post_type=wpcf7_contact_form&amp;p=6068',0,'wpcf7_contact_form','',0),(6105,1,'2020-12-09 07:50:50','2020-12-09 07:50:50','','digital-blog1','','inherit','open','closed','','digital-blog1','','','2020-12-09 07:50:50','2020-12-09 07:50:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/digital-blog1.jpg',0,'attachment','image/jpeg',0),(6106,1,'2020-12-09 07:50:52','2020-12-09 07:50:52','','digital-blog2','','inherit','open','closed','','digital-blog2','','','2020-12-09 07:50:52','2020-12-09 07:50:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/digital-blog2.jpg',0,'attachment','image/jpeg',0),(6310,1,'2021-02-02 01:58:27','2021-02-02 01:58:27','','bg-page-title','','inherit','open','closed','','bg-page-title','','','2021-02-02 01:58:27','2021-02-02 01:58:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/02/bg-page-title.jpg',0,'attachment','image/jpeg',0),(6370,1,'2021-02-02 14:32:51','2021-02-02 14:32:51','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]','Slider','','publish','closed','closed','','slider','','','2021-02-02 14:32:51','2021-02-02 14:32:51','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=6370',0,'page','',0),(6420,1,'2021-02-03 04:03:07','2021-02-03 04:03:07','','video-intro1','','inherit','open','closed','','video-intro1','','','2021-02-03 04:03:07','2021-02-03 04:03:07','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/02/video-intro1.jpg',0,'attachment','image/jpeg',0),(6622,1,'2021-02-05 02:44:29','2021-02-05 02:44:29','','u-testimonial-01','','inherit','open','closed','','u-testimonial-01','','','2021-02-05 02:44:29','2021-02-05 02:44:29','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/02/u-testimonial-01.jpg',0,'attachment','image/jpeg',0),(6991,1,'2021-02-18 15:02:58','2021-02-18 15:02:58','','theme23','','inherit','open','closed','','theme23','','','2021-02-18 15:02:58','2021-02-18 15:02:58','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/02/theme23.jpg',0,'attachment','image/jpeg',0),(6993,1,'2021-02-18 15:03:57','2021-02-18 15:03:57','','about-section-01','','inherit','open','closed','','about-section-01','','','2021-02-18 15:03:57','2021-02-18 15:03:57','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/02/about-section-01.jpg',0,'attachment','image/jpeg',0),(7041,1,'2021-03-29 04:38:42','2021-03-29 04:38:42','','favicon','','inherit','open','closed','','favicon','','','2021-03-29 04:38:42','2021-03-29 04:38:42','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/favicon.png',0,'attachment','image/png',0),(7042,1,'2021-03-29 04:38:44','2021-03-29 04:38:44','','logo-dark','','inherit','open','closed','','logo-dark','','','2021-03-29 04:38:44','2021-03-29 04:38:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/logo-dark.png',0,'attachment','image/png',0),(7043,1,'2021-03-29 04:38:46','2021-03-29 04:38:46','','logo-light','','inherit','open','closed','','logo-light','','','2021-03-29 04:38:46','2021-03-29 04:38:46','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/logo-light.png',0,'attachment','image/png',0),(7046,1,'2021-03-29 07:55:08','2021-03-29 07:55:08','','bg-footer1','','inherit','open','closed','','bg-footer1','','','2021-03-29 07:55:08','2021-03-29 07:55:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/10/bg-footer1.jpg',0,'attachment','image/jpeg',0),(7099,1,'2021-03-29 08:58:10','2021-03-29 08:58:10','','bg-slider1','','inherit','open','closed','','bg-slider1','','','2021-03-29 08:58:10','2021-03-29 08:58:10','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1.jpg',0,'attachment','image/jpeg',0),(7107,1,'2021-03-29 09:14:14','2021-03-29 09:14:14','<h4>Log in to Your Account</h4>\n		<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-author-01.jpg\" width=\"256\" height=\"256\" alt=\"Rinnah\" />\n		Rinnah\n	<a href=\"https://demo.casethemes.net/consultio-finance4/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fdemo.casethemes.net%2Fconsultio-finance4%2Fsign-in%2F&#038;_wpnonce=761d312221\">Logout</a>\n                    New to Consultio?                    <a href=\"https://demo.casethemes.net/consultio-finance4/sign-up/\">Sign Up</a>\n                <a href=\"https://demo.casethemes.net/consultio-finance4/my-account/lost-password/\">Forgot your password?</a>','Sign In','','publish','closed','closed','','sign-in','','','2021-03-29 09:14:14','2021-03-29 09:14:14','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=7107',0,'page','',0),(7110,1,'2021-03-29 09:14:21','2021-03-29 09:14:21','<h4>Create your account</h4>\n		<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/home-author-01.jpg\" width=\"256\" height=\"256\" alt=\"Rinnah\" />\n		Rinnah\n	<a href=\"https://demo.casethemes.net/consultio-finance4/wp-login.php?action=logout&#038;redirect_to=https%3A%2F%2Fdemo.casethemes.net%2Fconsultio-finance4%2Fsign-up%2F&#038;_wpnonce=a652ff8e8c\">Logout</a>\n                    Already have an account?                    <a href=\"https://demo.casethemes.net/consultio-finance4/sign-in/\">Log In</a>','Sign Up','','publish','closed','closed','','sign-up','','','2021-03-29 09:14:21','2021-03-29 09:14:21','',0,'https://demo.casethemes.net/consultio-finance4/?page_id=7110',0,'page','',0),(7134,1,'2021-03-29 10:27:52','2021-03-29 10:27:52','','bg-slider2','','inherit','open','closed','','bg-slider2','','','2021-03-29 10:27:52','2021-03-29 10:27:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2.jpg',0,'attachment','image/jpeg',0),(7135,1,'2021-03-29 10:27:54','2021-03-29 10:27:54','','bg-slider3','','inherit','open','closed','','bg-slider3','','','2021-03-29 10:27:54','2021-03-29 10:27:54','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3.jpg',0,'attachment','image/jpeg',0),(7257,1,'2021-03-31 04:59:17','2021-03-31 04:59:17','','h-bg-section1','','inherit','open','closed','','h-bg-section1','','','2021-03-31 04:59:17','2021-03-31 04:59:17','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section1-1.png',0,'attachment','image/png',0),(7267,1,'2021-03-31 05:09:38','2021-03-31 05:09:38','','h-banner1','','inherit','open','closed','','h-banner1','','','2021-03-31 05:09:38','2021-03-31 05:09:38','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg',0,'attachment','image/jpeg',0),(7304,1,'2021-03-31 09:09:05','2021-03-31 09:09:05','','h-bg-section2','','inherit','open','closed','','h-bg-section2','','','2021-03-31 09:09:05','2021-03-31 09:09:05','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section2.jpg',0,'attachment','image/jpeg',0),(7416,1,'2021-03-31 16:29:51','2021-03-31 16:29:51','','h-bg-section4','','inherit','open','closed','','h-bg-section4','','','2021-03-31 16:29:51','2021-03-31 16:29:51','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4.jpg',0,'attachment','image/jpeg',0),(7439,1,'2021-04-01 02:31:15','2021-04-01 02:31:15','','h-icon1','','inherit','open','closed','','h-icon1','','','2021-04-01 02:31:15','2021-04-01 02:31:15','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png',0,'attachment','image/png',0),(7440,1,'2021-04-01 02:31:16','2021-04-01 02:31:16','','h-icon2','','inherit','open','closed','','h-icon2','','','2021-04-01 02:31:16','2021-04-01 02:31:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png',0,'attachment','image/png',0),(7441,1,'2021-04-01 02:31:16','2021-04-01 02:31:16','','h-icon3','','inherit','open','closed','','h-icon3','','','2021-04-01 02:31:16','2021-04-01 02:31:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png',0,'attachment','image/png',0),(7454,1,'2021-04-01 02:51:37','2021-04-01 02:51:37','','h-bg-section5','','inherit','open','closed','','h-bg-section5','','','2021-04-01 02:51:37','2021-04-01 02:51:37','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-bg-section5.png',0,'attachment','image/png',0),(7500,1,'2021-04-01 03:29:30','2021-04-01 03:29:30','','h-case1','','inherit','open','closed','','h-case1','','','2021-04-01 03:29:30','2021-04-01 03:29:30','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg',0,'attachment','image/jpeg',0),(7507,1,'2021-04-01 03:31:52','2021-04-01 03:31:52','','h-bg-section7','','inherit','open','closed','','h-bg-section7','','','2021-04-01 03:31:52','2021-04-01 03:31:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-bg-section7.jpg',0,'attachment','image/jpeg',0),(7517,1,'2021-04-01 03:50:23','2021-04-01 03:50:23','','case-logo1','','inherit','open','closed','','case-logo1','','','2021-04-01 03:50:23','2021-04-01 03:50:23','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/case-logo1.png',0,'attachment','image/png',0),(7525,1,'2021-04-01 04:00:00','2021-04-01 04:00:00','','h-case2','','inherit','open','closed','','h-case2','','','2021-04-01 04:00:00','2021-04-01 04:00:00','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2.jpg',0,'attachment','image/jpeg',0),(7538,1,'2021-04-01 04:50:50','2021-04-01 04:50:50','','case-logo2','','inherit','open','closed','','case-logo2','','','2021-04-01 04:50:50','2021-04-01 04:50:50','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/case-logo2.png',0,'attachment','image/png',0),(7616,1,'2021-04-01 07:11:37','2021-04-01 07:11:37','','h-bg-section8','','inherit','open','closed','','h-bg-section8','','','2021-04-01 07:11:37','2021-04-01 07:11:37','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-bg-section8.jpg',0,'attachment','image/jpeg',0),(7683,1,'2021-04-01 09:53:45','2021-04-01 09:53:45','','h-bg-section9','','inherit','open','closed','','h-bg-section9','','','2021-04-01 09:53:45','2021-04-01 09:53:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-bg-section9.png',0,'attachment','image/png',0),(7739,1,'2021-04-01 10:23:58','2021-04-01 10:23:58','','h-icon-arrow1','','inherit','open','closed','','h-icon-arrow1','','','2021-04-01 10:23:58','2021-04-01 10:23:58','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png',0,'attachment','image/png',0),(7746,1,'2021-04-01 10:27:55','2021-04-01 10:27:55','','h-phone','','inherit','open','closed','','h-phone','','','2021-04-01 10:27:55','2021-04-01 10:27:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png',0,'attachment','image/png',0),(7781,1,'2021-04-01 15:50:16','2021-04-01 15:50:16','','u-blog-02','','inherit','open','closed','','u-blog-02','','','2021-04-01 15:50:16','2021-04-01 15:50:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg',0,'attachment','image/jpeg',0),(7782,1,'2021-04-01 15:56:32','2021-04-01 15:56:32','','h-bg-newsletter','','inherit','open','closed','','h-bg-newsletter','','','2021-04-01 15:56:32','2021-04-01 15:56:32','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-bg-newsletter.jpg',0,'attachment','image/jpeg',0),(7786,1,'2021-04-01 15:58:55','2021-04-01 15:58:55','','h-logo','','inherit','open','closed','','h-logo','','','2021-04-01 15:58:55','2021-04-01 15:58:55','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png',0,'attachment','image/png',0),(8017,1,'2021-04-02 17:37:19','2021-04-02 17:37:19','<h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                                                Finance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo1.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                                                Finance 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo17.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                                                Finance RTL                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo18.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                                                Business 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo2.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                                                Business 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo16.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business3/\">\n                                                                                                                                Business 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo21.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                                                Corporate 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo12.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                                                Corporate 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo13.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                                                Corporate 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo14.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-agency/\">\n                                                                                                                                Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo22.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                                                Human Resource                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo7.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                                                Life Coach                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo8.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                                                Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo9.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                                                Medical                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo10.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                                                IT Solution                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo5.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-tax/\">\n                                                                                                                                Tax Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo6.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                                                Law                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo3.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                                                Startup                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo4.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            Multi Pages\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-finance4/\">\n                                                                                                                                Finance 4                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo27.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital-marketing/\">\n                                                                                                                                Digital Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo26.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital/\">\n                                                                                                                                Digital Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo24.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-immigration/\">\n                                                                                                                                Immigration                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo23.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                                                Insurance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo11.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                                                Corona                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo15.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                                                Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo19.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                                                Software                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo20.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                                                Finance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo1.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                                                Finance 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo17.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                                                Finance RTL                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo18.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                                                Business 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo2.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                                                Business 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo16.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-business3/home-onepage\">\n                                                                                                                                Business 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo21.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                                                Corporate 1                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo12.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                                                Corporate 2                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo13.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                                                Corporate 3                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo14.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-agency/home-onepage\">\n                                                                                                                                Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo22.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                                                Human Resource                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo7.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                                                Life Coach                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo8.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                                                Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo9.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                                                Medical                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo10.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                                                IT Solution                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo5.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                                                Tax Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo6.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                                                Law                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo3.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                                                Startup                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo4.jpg\" />\n                                            </a>\n                </li>\n            </ul>\n	    <h3 data-wow-delay=\"ms\">\n            One Page\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"https://demo.casethemes.net/consultio-finance4/home-onepage\">\n                                                                                                                                Finance 4                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo27.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital-marketing/home-onepage\">\n                                                                                                                                Digital Marketing                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo26.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-digital/home-onepage\">\n                                                                                                                                Digital Agency                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo24.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-immigration/home-onepage\">\n                                                                                                                                Immigration                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo23.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                                                Corona                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo15.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                                                Insurance                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo11.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                                                Consulting                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo19.jpg\" />\n                                            </a>\n                </li>\n                        <li>\n                    <a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                                                Software                                                                            <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/themes/csuti/assets/images/home-demo/demo20.jpg\" />\n                                            </a>\n                </li>\n            </ul>','Mega Menu Demos','','publish','closed','closed','','mega-menu-demos','','','2021-04-02 17:37:19','2021-04-02 17:37:19','',0,'https://demo.casethemes.net/consultio-finance4/?elementor_library=mega-menu-demos',0,'elementor_library','',0),(8018,1,'2022-01-14 13:00:14','2022-01-14 13:00:14','','Dhaka branch','','publish','closed','closed','','dhaka-branch','','','2022-01-14 13:00:14','2022-01-14 13:00:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/dhaka-branch/',1,'nav_menu_item','',0),(8019,1,'2022-01-14 13:00:16','2022-01-14 13:00:16','','London branch','','publish','closed','closed','','london-branch','','','2022-01-14 13:00:16','2022-01-14 13:00:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/london-branch/',2,'nav_menu_item','',0),(8020,1,'2022-01-14 13:00:18','2022-01-14 13:00:18','','New York branch','','publish','closed','closed','','new-york-branch','','','2022-01-14 13:00:18','2022-01-14 13:00:18','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/new-york-branch/',3,'nav_menu_item','',0),(8021,1,'2022-01-14 13:00:21','2022-01-14 13:00:21','','Los Angeles branch','','publish','closed','closed','','los-angeles-branch','','','2022-01-14 13:00:21','2022-01-14 13:00:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/los-angeles-branch/',4,'nav_menu_item','',0),(8022,1,'2022-01-14 13:00:22','2022-01-14 13:00:22','','Pages','','publish','closed','closed','','pages','','','2022-01-14 13:00:22','2022-01-14 13:00:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pages/',8,'nav_menu_item','',0),(8023,1,'2022-01-14 13:00:25','2022-01-14 13:00:25','','Error 404','','publish','closed','closed','','error-404','','','2022-01-14 13:00:25','2022-01-14 13:00:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/error-404/',34,'nav_menu_item','',0),(8024,1,'2022-01-14 13:00:27','2022-01-14 13:00:27','','Submit a Ticket','','publish','closed','closed','','submit-a-ticket','','','2022-01-14 13:00:27','2022-01-14 13:00:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/submit-a-ticket/',2,'nav_menu_item','',0),(8025,1,'2022-01-14 13:00:30','2022-01-14 13:00:30','','Visit Knowledge Base','','publish','closed','closed','','visit-knowledge-base','','','2022-01-14 13:00:30','2022-01-14 13:00:30','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/visit-knowledge-base/',3,'nav_menu_item','',0),(8026,1,'2022-01-14 13:00:33','2022-01-14 13:00:33','','Support System','','publish','closed','closed','','support-system','','','2022-01-14 13:00:33','2022-01-14 13:00:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/support-system/',4,'nav_menu_item','',0),(8027,1,'2022-01-14 13:00:36','2022-01-14 13:00:36','','Refund Policy','','publish','closed','closed','','refund-policy','','','2022-01-14 13:00:36','2022-01-14 13:00:36','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/refund-policy/',5,'nav_menu_item','',0),(8028,1,'2022-01-14 13:00:38','2022-01-14 13:00:38','','Professional Services','','publish','closed','closed','','professional-services','','','2022-01-14 13:00:38','2022-01-14 13:00:38','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/professional-services/',6,'nav_menu_item','',0),(8029,1,'2022-01-14 13:00:40','2022-01-14 13:00:40','','Demos','','publish','closed','closed','','demos','','','2022-01-14 13:00:40','2022-01-14 13:00:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/demos/',1,'nav_menu_item','',0),(8030,1,'2022-01-14 13:00:43','2022-01-14 13:00:43','','Pages','','publish','closed','closed','','pages-2','','','2022-01-14 13:00:43','2022-01-14 13:00:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pages-2/',2,'nav_menu_item','',0),(8031,1,'2022-01-14 13:00:49','2022-01-14 13:00:49','','User Pages','','publish','closed','closed','','user-pages','','','2022-01-14 13:00:49','2022-01-14 13:00:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/user-pages/',31,'nav_menu_item','',0),(8032,1,'2022-01-14 13:00:53','2022-01-14 13:00:53','','Error 404','','publish','closed','closed','','error-404-2','','','2022-01-14 13:00:53','2022-01-14 13:00:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/error-404-2/',33,'nav_menu_item','',0),(8033,1,'2022-01-14 13:01:00','2022-01-14 13:01:00','','Demos','','publish','closed','closed','','demos-2','','','2022-01-14 13:01:00','2022-01-14 13:01:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/demos-2/',1,'nav_menu_item','',0),(8034,1,'2022-01-14 13:01:23','2022-01-14 13:01:23','','Elements','','publish','closed','closed','','elements','','','2022-01-14 13:01:23','2022-01-14 13:01:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/elements/',67,'nav_menu_item','',0),(8035,1,'2022-01-14 13:01:27','2022-01-14 13:01:27','','Demos','','publish','closed','closed','','demos-3','','','2022-01-14 13:01:27','2022-01-14 13:01:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/demos-3/',1,'nav_menu_item','',0),(8036,1,'2022-01-14 13:01:31','2022-01-14 13:01:31','','About us','','publish','closed','closed','','about-us','','','2022-01-14 13:01:31','2022-01-14 13:01:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-us/',3,'nav_menu_item','',0),(8037,1,'2022-01-14 13:01:36','2022-01-14 13:01:36','','Services','','publish','closed','closed','','services','','','2022-01-14 13:01:36','2022-01-14 13:01:36','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services/',2,'nav_menu_item','',0),(8038,1,'2022-01-14 13:01:40','2022-01-14 13:01:40','','Projects','','publish','closed','closed','','projects','','','2022-01-14 13:01:40','2022-01-14 13:01:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/projects/',4,'nav_menu_item','',0),(8039,1,'2022-01-14 13:01:44','2022-01-14 13:01:44','','Blog','','publish','closed','closed','','blog','','','2022-01-14 13:01:44','2022-01-14 13:01:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog/',6,'nav_menu_item','',0),(8040,1,'2022-01-14 13:01:51','2022-01-14 13:01:51','','Contact','','publish','closed','closed','','contact','','','2022-01-14 13:01:51','2022-01-14 13:01:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/contact/',7,'nav_menu_item','',0),(8041,1,'2022-01-14 13:02:07','2022-01-14 13:02:07','','User Pages','','publish','closed','closed','','user-pages-2','','','2022-01-14 13:02:07','2022-01-14 13:02:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/user-pages-2/',15,'nav_menu_item','',0),(8042,1,'2022-01-14 13:02:14','2022-01-14 13:02:14','','Pricing','','publish','closed','closed','','pricing','','','2022-01-14 13:02:14','2022-01-14 13:02:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pricing/',5,'nav_menu_item','',0),(8043,1,'2022-01-14 13:09:55','2022-01-14 13:09:55',' ','','','publish','closed','closed','','8043','','','2022-01-14 13:09:55','2022-01-14 13:09:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8043/',1,'nav_menu_item','',0),(8044,1,'2022-01-14 13:09:57','2022-01-14 13:09:57',' ','','','publish','closed','closed','','8044','','','2022-01-14 13:09:57','2022-01-14 13:09:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8044/',2,'nav_menu_item','',0),(8046,1,'2022-01-14 13:10:05','2022-01-14 13:10:05','','Services','','publish','closed','closed','','services-2','','','2022-01-14 13:10:05','2022-01-14 13:10:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-2/',3,'nav_menu_item','',0),(8047,1,'2022-01-14 13:10:11','2022-01-14 13:10:11','','News','','publish','closed','closed','','news','','','2022-01-14 13:10:11','2022-01-14 13:10:11','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/news/',5,'nav_menu_item','',0),(8048,1,'2022-01-14 13:10:16','2022-01-14 13:10:16','','Projects','','publish','closed','closed','','projects-2','','','2022-01-14 13:10:16','2022-01-14 13:10:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/projects-2/',4,'nav_menu_item','',0),(8049,1,'2022-01-14 13:10:19','2022-01-14 13:10:19',' ','','','publish','closed','closed','','8049','','','2022-01-14 13:10:19','2022-01-14 13:10:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8049/',2,'nav_menu_item','',0),(8050,1,'2022-01-14 13:10:23','2022-01-14 13:10:23',' ','','','publish','closed','closed','','8050','','','2022-01-14 13:10:23','2022-01-14 13:10:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8050/',3,'nav_menu_item','',0),(8051,1,'2022-01-14 13:10:26','2022-01-14 13:10:26',' ','','','publish','closed','closed','','8051','','','2022-01-14 13:10:26','2022-01-14 13:10:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8051/',4,'nav_menu_item','',0),(8052,1,'2022-01-14 13:10:29','2022-01-14 13:10:29',' ','','','publish','closed','closed','','8052','','','2022-01-14 13:10:29','2022-01-14 13:10:29','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8052/',1,'nav_menu_item','',0),(8053,1,'2022-01-14 13:10:32','2022-01-14 13:10:32',' ','','','publish','closed','closed','','8053','','','2022-01-14 13:10:32','2022-01-14 13:10:32','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8053/',5,'nav_menu_item','',0),(8054,1,'2022-01-14 13:10:37','2022-01-14 13:10:37','','Blog','','publish','closed','closed','','blog-2','','','2022-01-14 13:10:37','2022-01-14 13:10:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-2/',9,'nav_menu_item','',0),(8055,1,'2022-01-14 13:10:40','2022-01-14 13:10:40',' ','','','publish','closed','closed','','8055','','','2022-01-14 13:10:40','2022-01-14 13:10:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8055/',15,'nav_menu_item','',0),(8056,1,'2022-01-14 13:10:43','2022-01-14 13:10:43',' ','','','publish','closed','closed','','8056','','','2022-01-14 13:10:43','2022-01-14 13:10:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8056/',10,'nav_menu_item','',0),(8057,1,'2022-01-14 13:10:47','2022-01-14 13:10:47','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2022-01-14 13:10:47','2022-01-14 13:10:47','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar/',12,'nav_menu_item','',0),(8058,1,'2022-01-14 13:10:48','2022-01-14 13:10:48','','Right Sidebar','','publish','closed','closed','','right-sidebar','','','2022-01-14 13:10:48','2022-01-14 13:10:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar/',14,'nav_menu_item','',0),(8059,1,'2022-01-14 13:10:51','2022-01-14 13:10:51','','Blog Grid','','publish','closed','closed','','blog-grid','','','2022-01-14 13:10:51','2022-01-14 13:10:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-grid/',11,'nav_menu_item','',0),(8060,1,'2022-01-14 13:10:53','2022-01-14 13:10:53','','Left Sidebar','','publish','closed','closed','','left-sidebar-2','','','2022-01-14 13:10:53','2022-01-14 13:10:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-2/',16,'nav_menu_item','',0),(8061,1,'2022-01-14 13:10:55','2022-01-14 13:10:55','','Without Sidebar','','publish','closed','closed','','without-sidebar','','','2022-01-14 13:10:55','2022-01-14 13:10:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar/',17,'nav_menu_item','',0),(8062,1,'2022-01-14 13:10:58','2022-01-14 13:10:58','','Right Sidebar','','publish','closed','closed','','right-sidebar-2','','','2022-01-14 13:10:58','2022-01-14 13:10:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-2/',18,'nav_menu_item','',0),(8063,1,'2022-01-14 13:11:00','2022-01-14 13:11:00','','Without Sidebar','','publish','closed','closed','','without-sidebar-2','','','2022-01-14 13:11:00','2022-01-14 13:11:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-2/',13,'nav_menu_item','',0),(8064,1,'2022-01-14 13:11:03','2022-01-14 13:11:03','','Blog Details','','publish','closed','closed','','blog-details','','','2022-01-14 13:11:03','2022-01-14 13:11:03','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-details/',19,'nav_menu_item','',0),(8065,1,'2022-01-14 13:11:04','2022-01-14 13:11:04','','Right Sidebar','','publish','closed','closed','','right-sidebar-3','','','2022-01-14 13:11:04','2022-01-14 13:11:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-3/',22,'nav_menu_item','',0),(8072,1,'2022-01-14 13:11:34','2022-01-14 13:11:34',' ','','','publish','closed','closed','','8072','','','2022-01-14 13:11:34','2022-01-14 13:11:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8072/',27,'nav_menu_item','',0),(8073,1,'2022-01-14 13:11:37','2022-01-14 13:11:37',' ','','','publish','closed','closed','','8073','','','2022-01-14 13:11:37','2022-01-14 13:11:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8073/',7,'nav_menu_item','',0),(8074,1,'2022-01-14 13:11:41','2022-01-14 13:11:41','','4 Columns Wide','','publish','closed','closed','','4-columns-wide','','','2022-01-14 13:11:41','2022-01-14 13:11:41','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-wide/',6,'nav_menu_item','',0),(8075,1,'2022-01-14 13:11:43','2022-01-14 13:11:43','','3 Columns','','publish','closed','closed','','3-columns','','','2022-01-14 13:11:43','2022-01-14 13:11:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/3-columns/',4,'nav_menu_item','',0),(8076,1,'2022-01-14 13:11:46','2022-01-14 13:11:46','','2 Columns','','publish','closed','closed','','2-columns','','','2022-01-14 13:11:46','2022-01-14 13:11:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/2-columns/',3,'nav_menu_item','',0),(8077,1,'2022-01-14 13:11:49','2022-01-14 13:11:49','','4 Columns','','publish','closed','closed','','4-columns','','','2022-01-14 13:11:49','2022-01-14 13:11:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns/',5,'nav_menu_item','',0),(8078,1,'2022-01-14 13:11:52','2022-01-14 13:11:52','','Portfolio Details','','publish','closed','closed','','portfolio-details','','','2022-01-14 13:11:52','2022-01-14 13:11:52','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-details/',8,'nav_menu_item','',0),(8079,1,'2022-01-14 13:11:56','2022-01-14 13:11:56','','Portfolio','','publish','closed','closed','','portfolio','','','2022-01-14 13:11:56','2022-01-14 13:11:56','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio/',1,'nav_menu_item','',0),(8080,1,'2022-01-14 13:11:59','2022-01-14 13:11:59',' ','','','publish','closed','closed','','8080','','','2022-01-14 13:11:59','2022-01-14 13:11:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8080/',2,'nav_menu_item','',0),(8081,1,'2022-01-14 13:12:02','2022-01-14 13:12:02','','Services','','publish','closed','closed','','services-3','','','2022-01-14 13:12:02','2022-01-14 13:12:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-3/',2,'nav_menu_item','',0),(8082,1,'2022-01-14 13:12:06','2022-01-14 13:12:06','','About us','','publish','closed','closed','','about-us-2','','','2022-01-14 13:12:06','2022-01-14 13:12:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-us-2/',9,'nav_menu_item','',0),(8083,1,'2022-01-14 13:12:09','2022-01-14 13:12:09',' ','','','publish','closed','closed','','8083','','','2022-01-14 13:12:09','2022-01-14 13:12:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8083/',30,'nav_menu_item','',0),(8084,1,'2022-01-14 13:12:13','2022-01-14 13:12:13',' ','','','publish','closed','closed','','8084','','','2022-01-14 13:12:13','2022-01-14 13:12:13','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8084/',27,'nav_menu_item','',0),(8085,1,'2022-01-14 13:12:16','2022-01-14 13:12:16','','Our Team','','publish','closed','closed','','our-team','','','2022-01-14 13:12:16','2022-01-14 13:12:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-team/',15,'nav_menu_item','',0),(8086,1,'2022-01-14 13:12:20','2022-01-14 13:12:20',' ','','','publish','closed','closed','','8086','','','2022-01-14 13:12:20','2022-01-14 13:12:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8086/',20,'nav_menu_item','',0),(8087,1,'2022-01-14 13:12:23','2022-01-14 13:12:23',' ','','','publish','closed','closed','','8087','','','2022-01-14 13:12:23','2022-01-14 13:12:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8087/',21,'nav_menu_item','',0),(8088,1,'2022-01-14 13:12:28','2022-01-14 13:12:28',' ','','','publish','closed','closed','','8088','','','2022-01-14 13:12:28','2022-01-14 13:12:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8088/',26,'nav_menu_item','',0),(8089,1,'2022-01-14 13:12:31','2022-01-14 13:12:31',' ','','','publish','closed','closed','','8089','','','2022-01-14 13:12:31','2022-01-14 13:12:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8089/',19,'nav_menu_item','',0),(8091,1,'2022-01-14 13:12:37','2022-01-14 13:12:37',' ','','','publish','closed','closed','','8091','','','2022-01-14 13:12:37','2022-01-14 13:12:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8091/',18,'nav_menu_item','',0),(8092,1,'2022-01-14 13:12:40','2022-01-14 13:12:40',' ','','','publish','closed','closed','','8092','','','2022-01-14 13:12:40','2022-01-14 13:12:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8092/',17,'nav_menu_item','',0),(8093,1,'2022-01-14 13:12:42','2022-01-14 13:12:42',' ','','','publish','closed','closed','','8093','','','2022-01-14 13:12:42','2022-01-14 13:12:42','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8093/',29,'nav_menu_item','',0),(8094,1,'2022-01-14 13:12:44','2022-01-14 13:12:44',' ','','','publish','closed','closed','','8094','','','2022-01-14 13:12:44','2022-01-14 13:12:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8094/',25,'nav_menu_item','',0),(8095,1,'2022-01-14 13:12:46','2022-01-14 13:12:46',' ','','','publish','closed','closed','','8095','','','2022-01-14 13:12:46','2022-01-14 13:12:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8095/',24,'nav_menu_item','',0),(8096,1,'2022-01-14 13:12:48','2022-01-14 13:12:48',' ','','','publish','closed','closed','','8096','','','2022-01-14 13:12:48','2022-01-14 13:12:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8096/',23,'nav_menu_item','',0),(8100,1,'2022-01-14 13:12:57','2022-01-14 13:12:57','','About v.1','','publish','closed','closed','','about-v-1','','','2022-01-14 13:12:57','2022-01-14 13:12:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-v-1/',10,'nav_menu_item','',0),(8101,1,'2022-01-14 13:12:59','2022-01-14 13:12:59','','Pricing v.1','','publish','closed','closed','','pricing-v-1','','','2022-01-14 13:12:59','2022-01-14 13:12:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pricing-v-1/',28,'nav_menu_item','',0),(8102,1,'2022-01-14 13:13:01','2022-01-14 13:13:01','','Team v.1','','publish','closed','closed','','team-v-1','','','2022-01-14 13:13:01','2022-01-14 13:13:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/team-v-1/',16,'nav_menu_item','',0),(8103,1,'2022-01-14 13:13:04','2022-01-14 13:13:04','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1','','','2022-01-14 13:13:04','2022-01-14 13:13:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/testimonials-v-1/',22,'nav_menu_item','',0),(8104,1,'2022-01-14 13:13:07','2022-01-14 13:13:07',' ','','','publish','closed','closed','','8104','','','2022-01-14 13:13:07','2022-01-14 13:13:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8104/',35,'nav_menu_item','',0),(8105,1,'2022-01-14 13:13:10','2022-01-14 13:13:10',' ','','','publish','closed','closed','','8105','','','2022-01-14 13:13:10','2022-01-14 13:13:10','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8105/',3,'nav_menu_item','',0),(8106,1,'2022-01-14 13:13:12','2022-01-14 13:13:12',' ','','','publish','closed','closed','','8106','','','2022-01-14 13:13:12','2022-01-14 13:13:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8106/',4,'nav_menu_item','',0),(8107,1,'2022-01-14 13:13:15','2022-01-14 13:13:15',' ','','','publish','closed','closed','','8107','','','2022-01-14 13:13:15','2022-01-14 13:13:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8107/',5,'nav_menu_item','',0),(8108,1,'2022-01-14 13:13:20','2022-01-14 13:13:20',' ','','','publish','closed','closed','','8108','','','2022-01-14 13:13:20','2022-01-14 13:13:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8108/',7,'nav_menu_item','',0),(8109,1,'2022-01-14 13:13:25','2022-01-14 13:13:25',' ','','','publish','closed','closed','','8109','','','2022-01-14 13:13:25','2022-01-14 13:13:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8109/',6,'nav_menu_item','',0),(8110,1,'2022-01-14 13:13:29','2022-01-14 13:13:29',' ','','','publish','closed','closed','','8110','','','2022-01-14 13:13:29','2022-01-14 13:13:29','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8110/',24,'nav_menu_item','',0),(8111,1,'2022-01-14 13:13:31','2022-01-14 13:13:31','','FAQs','','publish','closed','closed','','faqs','','','2022-01-14 13:13:31','2022-01-14 13:13:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/faqs/',27,'nav_menu_item','',0),(8112,1,'2022-01-14 13:13:34','2022-01-14 13:13:34','','Our Team','','publish','closed','closed','','our-team-2','','','2022-01-14 13:13:34','2022-01-14 13:13:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-team-2/',9,'nav_menu_item','',0),(8113,1,'2022-01-14 13:13:43','2022-01-14 13:13:43','','About us','','publish','closed','closed','','about-us-3','','','2022-01-14 13:13:43','2022-01-14 13:13:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-us-3/',3,'nav_menu_item','',0),(8115,1,'2022-01-14 13:13:48','2022-01-14 13:13:48','','Blog','','publish','closed','closed','','blog-3','','','2022-01-14 13:13:48','2022-01-14 13:13:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-3/',53,'nav_menu_item','',0),(8116,1,'2022-01-14 13:13:51','2022-01-14 13:13:51',' ','','','publish','closed','closed','','8116','','','2022-01-14 13:13:51','2022-01-14 13:13:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8116/',59,'nav_menu_item','',0),(8117,1,'2022-01-14 13:13:54','2022-01-14 13:13:54','','Blog Grid','','publish','closed','closed','','blog-grid-2','','','2022-01-14 13:13:54','2022-01-14 13:13:54','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-grid-2/',55,'nav_menu_item','',0),(8118,1,'2022-01-14 13:13:57','2022-01-14 13:13:57',' ','','','publish','closed','closed','','8118','','','2022-01-14 13:13:57','2022-01-14 13:13:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8118/',54,'nav_menu_item','',0),(8119,1,'2022-01-14 13:14:00','2022-01-14 13:14:00','','Without Sidebar','','publish','closed','closed','','without-sidebar-4','','','2022-01-14 13:14:00','2022-01-14 13:14:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-4/',57,'nav_menu_item','',0),(8120,1,'2022-01-14 13:14:03','2022-01-14 13:14:03','','Right Sidebar','','publish','closed','closed','','right-sidebar-4','','','2022-01-14 13:14:03','2022-01-14 13:14:03','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-4/',58,'nav_menu_item','',0),(8121,1,'2022-01-14 13:14:06','2022-01-14 13:14:06','','Left Sidebar','','publish','closed','closed','','left-sidebar-4','','','2022-01-14 13:14:06','2022-01-14 13:14:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-4/',56,'nav_menu_item','',0),(8122,1,'2022-01-14 13:14:09','2022-01-14 13:14:09','','Without Sidebar','','publish','closed','closed','','without-sidebar-5','','','2022-01-14 13:14:09','2022-01-14 13:14:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-5/',61,'nav_menu_item','',0),(8123,1,'2022-01-14 13:14:13','2022-01-14 13:14:13','','Left Sidebar','','publish','closed','closed','','left-sidebar-5','','','2022-01-14 13:14:13','2022-01-14 13:14:13','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-5/',60,'nav_menu_item','',0),(8124,1,'2022-01-14 13:14:16','2022-01-14 13:14:16','','Right Sidebar','','publish','closed','closed','','right-sidebar-5','','','2022-01-14 13:14:16','2022-01-14 13:14:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-5/',62,'nav_menu_item','',0),(8125,1,'2022-01-14 13:14:18','2022-01-14 13:14:18','','Our Services','','publish','closed','closed','','our-services','','','2022-01-14 13:14:18','2022-01-14 13:14:18','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-services/',14,'nav_menu_item','',0),(8126,1,'2022-01-14 13:14:22','2022-01-14 13:14:22',' ','','','publish','closed','closed','','8126','','','2022-01-14 13:14:22','2022-01-14 13:14:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8126/',33,'nav_menu_item','',0),(8127,1,'2022-01-14 13:14:25','2022-01-14 13:14:25',' ','','','publish','closed','closed','','8127','','','2022-01-14 13:14:25','2022-01-14 13:14:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8127/',32,'nav_menu_item','',0),(8128,1,'2022-01-14 13:14:28','2022-01-14 13:14:28','','Blog Details','','publish','closed','closed','','blog-details-2','','','2022-01-14 13:14:28','2022-01-14 13:14:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-details-2/',63,'nav_menu_item','',0),(8129,1,'2022-01-14 13:14:31','2022-01-14 13:14:31','','Right Sidebar','','publish','closed','closed','','right-sidebar-6','','','2022-01-14 13:14:31','2022-01-14 13:14:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-6/',66,'nav_menu_item','',0),(8132,1,'2022-01-14 13:14:40','2022-01-14 13:14:40',' ','','','publish','closed','closed','','8132','','','2022-01-14 13:14:40','2022-01-14 13:14:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8132/',14,'nav_menu_item','',0),(8133,1,'2022-01-14 13:14:43','2022-01-14 13:14:43',' ','','','publish','closed','closed','','8133','','','2022-01-14 13:14:43','2022-01-14 13:14:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8133/',19,'nav_menu_item','',0),(8134,1,'2022-01-14 13:14:46','2022-01-14 13:14:46','','Services','','publish','closed','closed','','services-4','','','2022-01-14 13:14:46','2022-01-14 13:14:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-4/',39,'nav_menu_item','',0),(8135,1,'2022-01-14 13:14:48','2022-01-14 13:14:48',' ','','','publish','closed','closed','','8135','','','2022-01-14 13:14:48','2022-01-14 13:14:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8135/',51,'nav_menu_item','',0),(8136,1,'2022-01-14 13:14:51','2022-01-14 13:14:51',' ','','','publish','closed','closed','','8136','','','2022-01-14 13:14:51','2022-01-14 13:14:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8136/',46,'nav_menu_item','',0),(8137,1,'2022-01-14 13:14:52','2022-01-14 13:14:52','','Portfolio','','publish','closed','closed','','portfolio-2','','','2022-01-14 13:14:52','2022-01-14 13:14:52','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-2/',45,'nav_menu_item','',0),(8138,1,'2022-01-14 13:14:55','2022-01-14 13:14:55','','Portfolio Details','','publish','closed','closed','','portfolio-details-2','','','2022-01-14 13:14:55','2022-01-14 13:14:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-details-2/',52,'nav_menu_item','',0),(8139,1,'2022-01-14 13:14:56','2022-01-14 13:14:56',' ','','','publish','closed','closed','','8139','','','2022-01-14 13:14:56','2022-01-14 13:14:56','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8139/',38,'nav_menu_item','',0),(8140,1,'2022-01-14 13:14:59','2022-01-14 13:14:59','','Products','','publish','closed','closed','','products','','','2022-01-14 13:14:59','2022-01-14 13:14:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/products/',35,'nav_menu_item','',0),(8141,1,'2022-01-14 13:15:00','2022-01-14 13:15:00',' ','','','publish','closed','closed','','8141','','','2022-01-14 13:15:00','2022-01-14 13:15:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8141/',34,'nav_menu_item','',0),(8142,1,'2022-01-14 13:15:02','2022-01-14 13:15:02','','Wishlist','','publish','closed','closed','','wishlist','','','2022-01-14 13:15:02','2022-01-14 13:15:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/wishlist/',37,'nav_menu_item','',0),(8143,1,'2022-01-14 13:15:04','2022-01-14 13:15:04',' ','','','publish','closed','closed','','8143','','','2022-01-14 13:15:04','2022-01-14 13:15:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8143/',18,'nav_menu_item','',0),(8144,1,'2022-01-14 13:15:06','2022-01-14 13:15:06',' ','','','publish','closed','closed','','8144','','','2022-01-14 13:15:06','2022-01-14 13:15:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8144/',13,'nav_menu_item','',0),(8145,1,'2022-01-14 13:15:09','2022-01-14 13:15:09',' ','','','publish','closed','closed','','8145','','','2022-01-14 13:15:09','2022-01-14 13:15:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8145/',12,'nav_menu_item','',0),(8146,1,'2022-01-14 13:15:12','2022-01-14 13:15:12',' ','','','publish','closed','closed','','8146','','','2022-01-14 13:15:12','2022-01-14 13:15:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8146/',11,'nav_menu_item','',0),(8147,1,'2022-01-14 13:15:15','2022-01-14 13:15:15',' ','','','publish','closed','closed','','8147','','','2022-01-14 13:15:15','2022-01-14 13:15:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8147/',32,'nav_menu_item','',0),(8150,1,'2022-01-14 13:15:25','2022-01-14 13:15:25',' ','','','publish','closed','closed','','8150','','','2022-01-14 13:15:25','2022-01-14 13:15:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8150/',26,'nav_menu_item','',0),(8151,1,'2022-01-14 13:15:28','2022-01-14 13:15:28',' ','','','publish','closed','closed','','8151','','','2022-01-14 13:15:28','2022-01-14 13:15:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8151/',23,'nav_menu_item','',0),(8152,1,'2022-01-14 13:15:31','2022-01-14 13:15:31',' ','','','publish','closed','closed','','8152','','','2022-01-14 13:15:31','2022-01-14 13:15:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8152/',22,'nav_menu_item','',0),(8153,1,'2022-01-14 13:15:34','2022-01-14 13:15:34',' ','','','publish','closed','closed','','8153','','','2022-01-14 13:15:34','2022-01-14 13:15:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8153/',21,'nav_menu_item','',0),(8157,1,'2022-01-14 13:15:47','2022-01-14 13:15:47','','About v.1','','publish','closed','closed','','about-v-1-2','','','2022-01-14 13:15:47','2022-01-14 13:15:47','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-v-1-2/',4,'nav_menu_item','',0),(8159,1,'2022-01-14 13:15:53','2022-01-14 13:15:53','','Pricing v.1','','publish','closed','closed','','pricing-v-1-2','','','2022-01-14 13:15:53','2022-01-14 13:15:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pricing-v-1-2/',25,'nav_menu_item','',0),(8160,1,'2022-01-14 13:15:55','2022-01-14 13:15:55','','Team v.1','','publish','closed','closed','','team-v-1-2','','','2022-01-14 13:15:55','2022-01-14 13:15:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/team-v-1-2/',10,'nav_menu_item','',0),(8161,1,'2022-01-14 13:15:57','2022-01-14 13:15:57','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-2','','','2022-01-14 13:15:57','2022-01-14 13:15:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/testimonials-v-1-2/',20,'nav_menu_item','',0),(8162,1,'2022-01-14 13:15:59','2022-01-14 13:15:59',' ','','','publish','closed','closed','','8162','','','2022-01-14 13:15:59','2022-01-14 13:15:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8162/',42,'nav_menu_item','',0),(8163,1,'2022-01-14 13:16:02','2022-01-14 13:16:02',' ','','','publish','closed','closed','','8163','','','2022-01-14 13:16:02','2022-01-14 13:16:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8163/',44,'nav_menu_item','',0),(8164,1,'2022-01-14 13:16:04','2022-01-14 13:16:04','','4 Columns Wide','','publish','closed','closed','','4-columns-wide-2','','','2022-01-14 13:16:04','2022-01-14 13:16:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-wide-2/',50,'nav_menu_item','',0),(8165,1,'2022-01-14 13:16:08','2022-01-14 13:16:08','','3 Columns','','publish','closed','closed','','3-columns-2','','','2022-01-14 13:16:08','2022-01-14 13:16:08','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/3-columns-2/',48,'nav_menu_item','',0),(8166,1,'2022-01-14 13:16:10','2022-01-14 13:16:10','','2 Columns','','publish','closed','closed','','2-columns-2','','','2022-01-14 13:16:10','2022-01-14 13:16:10','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/2-columns-2/',47,'nav_menu_item','',0),(8167,1,'2022-01-14 13:16:13','2022-01-14 13:16:13','','4 Columns','','publish','closed','closed','','4-columns-2','','','2022-01-14 13:16:13','2022-01-14 13:16:13','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-2/',49,'nav_menu_item','',0),(8168,1,'2022-01-14 13:16:16','2022-01-14 13:16:16',' ','','','publish','closed','closed','','8168','','','2022-01-14 13:16:16','2022-01-14 13:16:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8168/',41,'nav_menu_item','',0),(8169,1,'2022-01-14 13:16:19','2022-01-14 13:16:19','','Our Services','','publish','closed','closed','','our-services-2','','','2022-01-14 13:16:19','2022-01-14 13:16:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-services-2/',8,'nav_menu_item','',0),(8170,1,'2022-01-14 13:16:25','2022-01-14 13:16:25',' ','','','publish','closed','closed','','8170','','','2022-01-14 13:16:25','2022-01-14 13:16:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8170/',43,'nav_menu_item','',0),(8171,1,'2022-01-14 13:16:36','2022-01-14 13:16:36','','Our Services','','publish','closed','closed','','our-services-3','','','2022-01-14 13:16:36','2022-01-14 13:16:36','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-services-3/',40,'nav_menu_item','',0),(8172,1,'2022-01-14 13:16:41','2022-01-14 13:16:41',' ','','','publish','closed','closed','','8172','','','2022-01-14 13:16:41','2022-01-14 13:16:41','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8172/',17,'nav_menu_item','',0),(8173,1,'2022-01-14 13:16:53','2022-01-14 13:16:53',' ','','','publish','closed','closed','','8173','','','2022-01-14 13:16:53','2022-01-14 13:16:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8173/',16,'nav_menu_item','',0),(8174,1,'2022-01-14 13:31:31','2022-01-14 13:31:31','','Default Kit','','publish','closed','closed','','default-kit-2','','','2022-02-16 14:11:18','2022-02-16 14:11:18','',0,'http://demoweblinks.in/ealoorconsultancy/?elementor_library=default-kit-2',0,'elementor_library','',0),(8175,1,'2022-01-14 13:34:21','2022-01-14 13:34:21','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                        Our Awesome Services                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/penalty-recovery/\"></a>\n                        About Our Company                                \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n	    <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n	    <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/csuti-finance4/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re driven to make the complex simple.\n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Pricing                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n	    <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            4 Nov, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n	    <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <!-- Mailchimp for WordPress v4.8.3 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id=\"mc4wp-form-1\" method=\"post\" data-id=\"4680\" data-name=\"Form 1\" >\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n		<input type=\"submit\" value=\"Subscribe\" />\n<label style=\"display: none !important;\">Leave this field empty if you\'re human: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" /></label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1617383180\" /><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"4680\" /><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" /></form><!-- / Mailchimp for WordPress Plugin -->    \n		*I have read the Privacy Policy and agree to its terms.		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-14 13:34:21','2022-01-14 13:34:21','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8175',0,'revision','',0),(8176,1,'2022-01-14 13:34:24','2022-01-14 13:34:24','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                        Our Awesome Services                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/service/penalty-recovery/\"></a>\n                        About Our Company                                \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n	    <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n	    <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/csuti-finance4/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/international-business-development/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"https://demo.casethemes.net/consultio-finance4/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re driven to make the complex simple.\n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Pricing                                \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n	    <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            5 Nov, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            4 Nov, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-finance4/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n	    <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <!-- Mailchimp for WordPress v4.8.3 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id=\"mc4wp-form-1\" method=\"post\" data-id=\"4680\" data-name=\"Form 1\" >\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n		<input type=\"submit\" value=\"Subscribe\" />\n<label style=\"display: none !important;\">Leave this field empty if you\'re human: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" /></label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1617383180\" /><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"4680\" /><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" /></form><!-- / Mailchimp for WordPress Plugin -->    \n		*I have read the Privacy Policy and agree to its terms.		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-14 13:34:24','2022-01-14 13:34:24','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8176',0,'revision','',0),(8177,1,'2022-01-14 13:34:29','2022-01-14 13:34:29','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            November 4, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-14 13:34:29','2022-01-14 13:34:29','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8177',0,'revision','',0),(8181,1,'2019-10-30 03:38:33','2019-10-30 03:38:33','<h3>\n        We are <cite>Consultio!</cite>\n        <i></i>\n    </h3>\n		We work with a passion of taking challenges and creating new ones in advertising sector.		\n		Open Hours:Mon - Sat: 8 am - 5 pm,<br/>\nSunday: CLOSED		\n    <h3>\n        Newsletter\n        <i></i>\n    </h3>\n		Subscribe our newsletter to get our latest update &#038; news		\n	    <!-- Mailchimp for WordPress v4.8 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id=\"mc4wp-form-1\" method=\"post\" data-id=\"4680\" data-name=\"Form 1\" >\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n		<input type=\"submit\" value=\"Subscribe\" />\n<label style=\"display: none !important;\">Leave this field empty if you\'re human: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" /></label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1596785007\" /><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"4680\" /><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" /></form><!-- / Mailchimp for WordPress Plugin -->    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n    <h3>\n        Official info:\n        <i></i>\n    </h3>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       envato@gmail.com<br />\ninfo@mail.com                    \n                           </li>\n            </ul>\n    <h3>\n        Instagram\n        <i></i>\n    </h3>\n        <a href=\"https://www.instagram.com/p/B9UK7JWlAmp/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&#038;_nc_sid=8ae9d6&#038;_nc_ohc=bGI0ydGmO_AAX8aIqzV&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=a8d302177e467ece0914dd8b760b659d&#038;oe=5F5213A4\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=bGI0ydGmO_AAX8aIqzV&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=a8d302177e467ece0914dd8b760b659d&amp;oe=5F5213A4&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK7JWlAmp/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK7JWlAmp/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=bGI0ydGmO_AAX8aIqzV&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=a8d302177e467ece0914dd8b760b659d&amp;oe=5F5213A4&quot;}\">\n            Instagram post 17855531329820801\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17855531329820801\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK6nKFJ_N/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&#038;_nc_sid=8ae9d6&#038;_nc_ohc=OkXVDzMqk5MAX_6z8lM&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=2e0b1324d3ff9f4348e2dd6316ce74a0&#038;oe=5F52B6A1\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&amp;_nc_sid=8ae9d6&amp;_nc_ohc=OkXVDzMqk5MAX_6z8lM&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=2e0b1324d3ff9f4348e2dd6316ce74a0&amp;oe=5F52B6A1&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK6nKFJ_N/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK6nKFJ_N/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&amp;_nc_sid=8ae9d6&amp;_nc_ohc=OkXVDzMqk5MAX_6z8lM&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=2e0b1324d3ff9f4348e2dd6316ce74a0&amp;oe=5F52B6A1&quot;}\">\n            Instagram post 17874405595578460\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17874405595578460\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK57Clmxa/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&#038;_nc_sid=8ae9d6&#038;_nc_ohc=P3gvGYP8fAEAX_Q2_AL&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=6485522c64d8478ec8be00f1a4befb46&#038;oe=5F5137FD\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&amp;_nc_sid=8ae9d6&amp;_nc_ohc=P3gvGYP8fAEAX_Q2_AL&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=6485522c64d8478ec8be00f1a4befb46&amp;oe=5F5137FD&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK57Clmxa/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK57Clmxa/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&amp;_nc_sid=8ae9d6&amp;_nc_ohc=P3gvGYP8fAEAX_Q2_AL&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=6485522c64d8478ec8be00f1a4befb46&amp;oe=5F5137FD&quot;}\">\n            Instagram post 17869995694617192\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17869995694617192\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK4-4FsOa/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&#038;_nc_sid=8ae9d6&#038;_nc_ohc=SVgEEpvQXFwAX8wguvr&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=2d6c36dee399502c7e1bfae306113b5c&#038;oe=5F5096D6\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=SVgEEpvQXFwAX8wguvr&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=2d6c36dee399502c7e1bfae306113b5c&amp;oe=5F5096D6&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK4-4FsOa/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK4-4FsOa/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=SVgEEpvQXFwAX8wguvr&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=2d6c36dee399502c7e1bfae306113b5c&amp;oe=5F5096D6&quot;}\">\n            Instagram post 18131832721025451\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18131832721025451\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK4KflXBJ/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&#038;_nc_sid=8ae9d6&#038;_nc_ohc=Bfhea84snuMAX_p18y-&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=cf2033fec8d32497db5177091f3ab4d9&#038;oe=5F532C87\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&amp;_nc_sid=8ae9d6&amp;_nc_ohc=Bfhea84snuMAX_p18y-&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=cf2033fec8d32497db5177091f3ab4d9&amp;oe=5F532C87&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK4KflXBJ/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK4KflXBJ/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&amp;_nc_sid=8ae9d6&amp;_nc_ohc=Bfhea84snuMAX_p18y-&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=cf2033fec8d32497db5177091f3ab4d9&amp;oe=5F532C87&quot;}\">\n            Instagram post 18130711429055539\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18130711429055539\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK2r9lfV2/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&#038;_nc_sid=8ae9d6&#038;_nc_ohc=R4d3qERMWl8AX_Zpuft&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=cd319ff9aef6717b91013f6ea2ccbe2c&#038;oe=5F5259FE\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&amp;_nc_sid=8ae9d6&amp;_nc_ohc=R4d3qERMWl8AX_Zpuft&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=cd319ff9aef6717b91013f6ea2ccbe2c&amp;oe=5F5259FE&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK2r9lfV2/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK2r9lfV2/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&amp;_nc_sid=8ae9d6&amp;_nc_ohc=R4d3qERMWl8AX_Zpuft&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=cd319ff9aef6717b91013f6ea2ccbe2c&amp;oe=5F5259FE&quot;}\">\n            Instagram post 17854083157850505\n            	                    <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17854083157850505\">\n        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer - Default','','publish','closed','closed','','footer-1-2','','','2019-10-30 03:38:33','2019-10-30 03:38:33','',0,'https://demo.casethemes.net/consultio-business3/?post_type=footer&amp;p=20',0,'footer','',0),(8182,1,'2022-01-14 13:53:49','2022-01-14 13:53:49','','Pages','','publish','closed','closed','','pages-3','','','2022-01-14 13:53:49','2022-01-14 13:53:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pages-3/',9,'nav_menu_item','',0),(8183,1,'2022-01-14 13:54:03','2022-01-14 13:54:03','','Error 404','','publish','closed','closed','','error-404-3','','','2022-01-14 13:54:03','2022-01-14 13:54:03','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/error-404-3/',37,'nav_menu_item','',0),(8184,1,'2022-01-14 13:54:06','2022-01-14 13:54:06','','Pages','','publish','closed','closed','','pages-4','','','2022-01-14 13:54:06','2022-01-14 13:54:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pages-4/',8,'nav_menu_item','',0),(8185,1,'2022-01-14 13:54:08','2022-01-14 13:54:08','','Error 404','','publish','closed','closed','','error-404-4','','','2022-01-14 13:54:08','2022-01-14 13:54:08','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/error-404-4/',30,'nav_menu_item','',0),(8186,1,'2022-01-14 13:54:10','2022-01-14 13:54:10','','Demos','','publish','closed','closed','','demos-4','','','2022-01-14 13:54:10','2022-01-14 13:54:10','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/demos-4/',1,'nav_menu_item','',0),(8187,1,'2022-01-14 13:54:12','2022-01-14 13:54:12','','Demos','','publish','closed','closed','','demos-5','','','2022-01-14 13:54:12','2022-01-14 13:54:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/demos-5/',1,'nav_menu_item','',0),(8188,1,'2022-01-14 13:54:14','2022-01-14 13:54:14','','Dhaka branch','','publish','closed','closed','','dhaka-branch-2','','','2022-01-14 13:54:14','2022-01-14 13:54:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/dhaka-branch-2/',1,'nav_menu_item','',0),(8189,1,'2022-01-14 13:54:16','2022-01-14 13:54:16','','London branch','','publish','closed','closed','','london-branch-2','','','2022-01-14 13:54:16','2022-01-14 13:54:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/london-branch-2/',2,'nav_menu_item','',0),(8190,1,'2022-01-14 13:54:16','2022-01-14 13:54:16','','New York branch','','publish','closed','closed','','new-york-branch-2','','','2022-01-14 13:54:16','2022-01-14 13:54:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/new-york-branch-2/',3,'nav_menu_item','',0),(8191,1,'2022-01-14 13:55:05','2022-01-14 13:55:05','','Los Angeles branch','','publish','closed','closed','','los-angeles-branch-2','','','2022-01-14 13:55:05','2022-01-14 13:55:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/los-angeles-branch-2/',4,'nav_menu_item','',0),(8192,1,'2022-01-14 13:55:08','2022-01-14 13:55:08','','Elements','','publish','closed','closed','','elements-2','','','2022-01-14 13:55:08','2022-01-14 13:55:08','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/elements-2/',65,'nav_menu_item','',0),(8193,1,'2022-01-14 13:55:09','2022-01-14 13:55:09','','Home','','publish','closed','closed','','home','','','2022-01-14 13:55:09','2022-01-14 13:55:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/home/',1,'nav_menu_item','',0),(8194,1,'2022-01-14 13:55:12','2022-01-14 13:55:12','','About','','publish','closed','closed','','about','','','2022-01-14 13:55:12','2022-01-14 13:55:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about/',3,'nav_menu_item','',0),(8195,1,'2022-01-14 13:55:14','2022-01-14 13:55:14','','Services','','publish','closed','closed','','services-5','','','2022-01-14 13:55:14','2022-01-14 13:55:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-5/',2,'nav_menu_item','',0),(8196,1,'2022-01-14 13:55:17','2022-01-14 13:55:17','','Team','','publish','closed','closed','','team','','','2022-01-14 13:55:17','2022-01-14 13:55:17','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/team/',5,'nav_menu_item','',0),(8197,1,'2022-01-14 13:55:19','2022-01-14 13:55:19','','Blog','','publish','closed','closed','','blog-4','','','2022-01-14 13:55:19','2022-01-14 13:55:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-4/',6,'nav_menu_item','',0),(8198,1,'2022-01-14 13:55:22','2022-01-14 13:55:22','','Contact','','publish','closed','closed','','contact-2','','','2022-01-14 13:55:22','2022-01-14 13:55:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/contact-2/',7,'nav_menu_item','',0),(8199,1,'2022-01-14 13:55:24','2022-01-14 13:55:24','','Testimonials','','publish','closed','closed','','testimonials','','','2022-01-14 13:55:24','2022-01-14 13:55:24','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/testimonials/',4,'nav_menu_item','',0),(8203,1,'2020-03-11 09:21:33','2020-03-11 09:21:33','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Applied Intelligence','','publish','closed','closed','','applied-intelligence-2','','','2020-03-11 09:21:33','2020-03-11 09:21:33','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=446',0,'service','',0),(8204,1,'2020-03-11 09:22:21','2020-03-11 09:22:21','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Strategy & Consulting','','publish','closed','closed','','strategy-consulting-2','','','2020-03-11 09:22:21','2020-03-11 09:22:21','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=448',0,'service','',0),(8205,1,'2020-02-13 07:57:41','2020-02-13 07:57:41','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Global Insights','','publish','closed','closed','','global-insights','','','2020-02-13 07:57:41','2020-02-13 07:57:41','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=645',0,'service','',0),(8206,1,'2020-02-13 07:58:38','2020-02-13 07:58:38','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Business Strategy','','publish','closed','closed','','business-strategy','','','2020-02-13 07:58:38','2020-02-13 07:58:38','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=647',0,'service','',0),(8207,1,'2020-02-13 07:59:06','2020-02-13 07:59:06','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Business Process','','publish','closed','closed','','business-process','','','2020-02-13 07:59:06','2020-02-13 07:59:06','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=649',0,'service','',0),(8208,1,'2020-02-13 08:00:23','2020-02-13 08:00:23','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Software Engineering','','publish','closed','closed','','software-engineering','','','2020-02-13 08:00:23','2020-02-13 08:00:23','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=651',0,'service','',0),(8209,1,'2020-03-04 01:25:29','2020-03-04 01:25:29','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Insight & Growth','','publish','closed','closed','','insight-growth','','','2020-03-04 01:25:29','2020-03-04 01:25:29','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=2625',0,'service','',0),(8210,1,'2020-03-04 01:26:57','2020-03-04 01:26:57','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-business3/service/web-desiging/\">Web Desiging</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-insurance/\">Business Insurance</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/health-insurance/\">Health Insurance</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/life-insurance/\">Life Insurance</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/flood-insurance/\">Flood Insurance</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Supply Chain & Operations','','publish','closed','closed','','supply-chain-operations','','','2020-03-04 01:26:57','2020-03-04 01:26:57','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=2627',0,'service','',0),(8211,1,'2020-03-21 08:23:48','2020-03-21 08:23:48','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Consulting','','publish','closed','closed','','business-consulting','','','2020-03-21 08:23:48','2020-03-21 08:23:48','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=4174',0,'service','',0),(8212,1,'2020-03-21 08:24:52','2020-03-21 08:24:52','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-business3/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-business3/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-business3/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-business3/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-business3/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-business3/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-business3/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Brand & Package','','publish','closed','closed','','brand-package-2','','','2020-03-21 08:24:52','2020-03-21 08:24:52','',0,'https://demo.casethemes.net/consultio-business3/?post_type=service&amp;p=4177',0,'service','',0),(8213,1,'2022-01-14 13:59:31','2022-01-14 13:59:31',' ','','','publish','closed','closed','','8213','','','2022-01-14 13:59:31','2022-01-14 13:59:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8213/',28,'nav_menu_item','',0),(8214,1,'2022-01-14 13:59:32','2022-01-14 13:59:32','','FAQs','','publish','closed','closed','','faqs-2','','','2022-01-14 13:59:32','2022-01-14 13:59:32','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/faqs-2/',31,'nav_menu_item','',0),(8215,1,'2022-01-14 13:59:34','2022-01-14 13:59:34','','Our Team','','publish','closed','closed','','our-team-3','','','2022-01-14 13:59:34','2022-01-14 13:59:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-team-3/',15,'nav_menu_item','',0),(8216,1,'2022-01-14 13:59:35','2022-01-14 13:59:35','','About us','','publish','closed','closed','','about-us-4','','','2022-01-14 13:59:35','2022-01-14 13:59:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-us-4/',10,'nav_menu_item','',0),(8218,1,'2022-01-14 13:59:38','2022-01-14 13:59:38',' ','','','publish','closed','closed','','8218','','','2022-01-14 13:59:38','2022-01-14 13:59:38','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8218/',1,'nav_menu_item','',0),(8219,1,'2022-01-14 13:59:40','2022-01-14 13:59:40',' ','','','publish','closed','closed','','8219','','','2022-01-14 13:59:40','2022-01-14 13:59:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8219/',2,'nav_menu_item','',0),(8221,1,'2022-01-14 13:59:44','2022-01-14 13:59:44','','Blog','','publish','closed','closed','','blog-5','','','2022-01-14 13:59:44','2022-01-14 13:59:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-5/',51,'nav_menu_item','',0),(8222,1,'2022-01-14 13:59:44','2022-01-14 13:59:44',' ','','','publish','closed','closed','','8222','','','2022-01-14 13:59:44','2022-01-14 13:59:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8222/',57,'nav_menu_item','',0),(8223,1,'2022-01-14 13:59:46','2022-01-14 13:59:46','','Blog Grid','','publish','closed','closed','','blog-grid-3','','','2022-01-14 13:59:46','2022-01-14 13:59:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-grid-3/',53,'nav_menu_item','',0),(8224,1,'2022-01-14 13:59:47','2022-01-14 13:59:47',' ','','','publish','closed','closed','','8224','','','2022-01-14 13:59:47','2022-01-14 13:59:47','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8224/',52,'nav_menu_item','',0),(8225,1,'2022-01-14 13:59:48','2022-01-14 13:59:48','','Without Sidebar','','publish','closed','closed','','without-sidebar-7','','','2022-01-14 13:59:48','2022-01-14 13:59:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-7/',55,'nav_menu_item','',0),(8226,1,'2022-01-14 13:59:50','2022-01-14 13:59:50','','Right Sidebar','','publish','closed','closed','','right-sidebar-7','','','2022-01-14 13:59:50','2022-01-14 13:59:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-7/',56,'nav_menu_item','',0),(8227,1,'2022-01-14 13:59:52','2022-01-14 13:59:52','','Left Sidebar','','publish','closed','closed','','left-sidebar-7','','','2022-01-14 13:59:52','2022-01-14 13:59:52','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-7/',54,'nav_menu_item','',0),(8228,1,'2022-01-14 13:59:53','2022-01-14 13:59:53','','Without Sidebar','','publish','closed','closed','','without-sidebar-8','','','2022-01-14 13:59:53','2022-01-14 13:59:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-8/',59,'nav_menu_item','',0),(8229,1,'2022-01-14 13:59:53','2022-01-14 13:59:53','','Left Sidebar','','publish','closed','closed','','left-sidebar-8','','','2022-01-14 13:59:53','2022-01-14 13:59:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-8/',58,'nav_menu_item','',0),(8230,1,'2022-01-14 13:59:55','2022-01-14 13:59:55','','Right Sidebar','','publish','closed','closed','','right-sidebar-8','','','2022-01-14 13:59:55','2022-01-14 13:59:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-8/',60,'nav_menu_item','',0),(8235,1,'2022-01-14 14:00:01','2022-01-14 14:00:01',' ','','','publish','closed','closed','','8235','','','2022-01-14 14:00:01','2022-01-14 14:00:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8235/',21,'nav_menu_item','',0),(8236,1,'2022-01-14 14:00:02','2022-01-14 14:00:02',' ','','','publish','closed','closed','','8236','','','2022-01-14 14:00:02','2022-01-14 14:00:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8236/',23,'nav_menu_item','',0),(8237,1,'2022-01-14 14:00:04','2022-01-14 14:00:04','','Services','','publish','closed','closed','','services-6','','','2022-01-14 14:00:04','2022-01-14 14:00:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-6/',2,'nav_menu_item','',0),(8238,1,'2022-01-14 14:00:05','2022-01-14 14:00:05',' ','','','publish','closed','closed','','8238','','','2022-01-14 14:00:05','2022-01-14 14:00:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8238/',49,'nav_menu_item','',0),(8239,1,'2022-01-14 14:00:06','2022-01-14 14:00:06',' ','','','publish','closed','closed','','8239','','','2022-01-14 14:00:06','2022-01-14 14:00:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8239/',44,'nav_menu_item','',0),(8240,1,'2022-01-14 14:00:08','2022-01-14 14:00:08','','Portfolio','','publish','closed','closed','','portfolio-3','','','2022-01-14 14:00:08','2022-01-14 14:00:08','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-3/',43,'nav_menu_item','',0),(8241,1,'2022-01-14 14:00:10','2022-01-14 14:00:10','','Services','','publish','closed','closed','','services-7','','','2022-01-14 14:00:10','2022-01-14 14:00:10','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-7/',3,'nav_menu_item','',0),(8242,1,'2022-01-14 14:00:11','2022-01-14 14:00:11','','News','','publish','closed','closed','','news-2','','','2022-01-14 14:00:11','2022-01-14 14:00:11','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/news-2/',5,'nav_menu_item','',0),(8243,1,'2022-01-14 14:00:13','2022-01-14 14:00:13','','Projects','','publish','closed','closed','','projects-3','','','2022-01-14 14:00:13','2022-01-14 14:00:13','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/projects-3/',4,'nav_menu_item','',0),(8244,1,'2022-01-14 14:00:14','2022-01-14 14:00:14','','Portfolio Details','','publish','closed','closed','','portfolio-details-3','','','2022-01-14 14:00:14','2022-01-14 14:00:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-details-3/',50,'nav_menu_item','',0),(8245,1,'2022-01-14 14:00:16','2022-01-14 14:00:16',' ','','','publish','closed','closed','','8245','','','2022-01-14 14:00:16','2022-01-14 14:00:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8245/',42,'nav_menu_item','',0),(8246,1,'2022-01-14 14:00:17','2022-01-14 14:00:17','','Products','','publish','closed','closed','','products-2','','','2022-01-14 14:00:17','2022-01-14 14:00:17','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/products-2/',39,'nav_menu_item','',0),(8247,1,'2022-01-14 14:00:20','2022-01-14 14:00:20',' ','','','publish','closed','closed','','8247','','','2022-01-14 14:00:20','2022-01-14 14:00:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8247/',38,'nav_menu_item','',0),(8248,1,'2022-01-14 14:00:21','2022-01-14 14:00:21','','Wishlist','','publish','closed','closed','','wishlist-2','','','2022-01-14 14:00:21','2022-01-14 14:00:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/wishlist-2/',41,'nav_menu_item','',0),(8249,1,'2022-01-14 14:00:23','2022-01-14 14:00:23',' ','','','publish','closed','closed','','8249','','','2022-01-14 14:00:23','2022-01-14 14:00:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8249/',2,'nav_menu_item','',0),(8250,1,'2022-01-14 14:00:26','2022-01-14 14:00:26',' ','','','publish','closed','closed','','8250','','','2022-01-14 14:00:26','2022-01-14 14:00:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8250/',3,'nav_menu_item','',0),(8251,1,'2022-01-14 14:00:28','2022-01-14 14:00:28',' ','','','publish','closed','closed','','8251','','','2022-01-14 14:00:28','2022-01-14 14:00:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8251/',4,'nav_menu_item','',0),(8252,1,'2022-01-14 14:00:29','2022-01-14 14:00:29',' ','','','publish','closed','closed','','8252','','','2022-01-14 14:00:29','2022-01-14 14:00:29','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8252/',1,'nav_menu_item','',0),(8253,1,'2022-01-14 14:00:31','2022-01-14 14:00:31',' ','','','publish','closed','closed','','8253','','','2022-01-14 14:00:31','2022-01-14 14:00:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8253/',5,'nav_menu_item','',0),(8254,1,'2022-01-14 14:00:33','2022-01-14 14:00:33',' ','','','publish','closed','closed','','8254','','','2022-01-14 14:00:33','2022-01-14 14:00:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8254/',22,'nav_menu_item','',0),(8255,1,'2022-01-14 14:00:35','2022-01-14 14:00:35','','Services','','publish','closed','closed','','services-8','','','2022-01-14 14:00:35','2022-01-14 14:00:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/services-8/',2,'nav_menu_item','',0),(8256,1,'2022-01-14 14:00:37','2022-01-14 14:00:37','','About us','','publish','closed','closed','','about-us-5','','','2022-01-14 14:00:37','2022-01-14 14:00:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-us-5/',9,'nav_menu_item','',0),(8257,1,'2022-01-14 14:00:39','2022-01-14 14:00:39',' ','','','publish','closed','closed','','8257','','','2022-01-14 14:00:39','2022-01-14 14:00:39','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8257/',29,'nav_menu_item','',0),(8258,1,'2022-01-14 14:00:41','2022-01-14 14:00:41',' ','','','publish','closed','closed','','8258','','','2022-01-14 14:00:41','2022-01-14 14:00:41','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8258/',26,'nav_menu_item','',0),(8259,1,'2022-01-14 14:00:44','2022-01-14 14:00:44','','Our Team','','publish','closed','closed','','our-team-4','','','2022-01-14 14:00:44','2022-01-14 14:00:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-team-4/',14,'nav_menu_item','',0),(8260,1,'2022-01-14 14:00:46','2022-01-14 14:00:46',' ','','','publish','closed','closed','','8260','','','2022-01-14 14:00:46','2022-01-14 14:00:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8260/',19,'nav_menu_item','',0),(8261,1,'2022-01-14 14:00:48','2022-01-14 14:00:48',' ','','','publish','closed','closed','','8261','','','2022-01-14 14:00:48','2022-01-14 14:00:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8261/',20,'nav_menu_item','',0),(8262,1,'2022-01-14 14:00:51','2022-01-14 14:00:51',' ','','','publish','closed','closed','','8262','','','2022-01-14 14:00:51','2022-01-14 14:00:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8262/',25,'nav_menu_item','',0),(8263,1,'2022-01-14 14:00:53','2022-01-14 14:00:53','','Blog','','publish','closed','closed','','blog-6','','','2022-01-14 14:00:53','2022-01-14 14:00:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-6/',9,'nav_menu_item','',0),(8264,1,'2022-01-14 14:00:55','2022-01-14 14:00:55',' ','','','publish','closed','closed','','8264','','','2022-01-14 14:00:55','2022-01-14 14:00:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8264/',15,'nav_menu_item','',0),(8265,1,'2022-01-14 14:00:57','2022-01-14 14:00:57',' ','','','publish','closed','closed','','8265','','','2022-01-14 14:00:57','2022-01-14 14:00:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8265/',10,'nav_menu_item','',0),(8266,1,'2022-01-14 14:00:58','2022-01-14 14:00:58','','Left Sidebar','','publish','closed','closed','','left-sidebar-10','','','2022-01-14 14:00:58','2022-01-14 14:00:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-10/',12,'nav_menu_item','',0),(8267,1,'2022-01-14 14:01:01','2022-01-14 14:01:01','','Right Sidebar','','publish','closed','closed','','right-sidebar-10','','','2022-01-14 14:01:01','2022-01-14 14:01:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-10/',14,'nav_menu_item','',0),(8268,1,'2022-01-14 14:01:02','2022-01-14 14:01:02','','Blog Grid','','publish','closed','closed','','blog-grid-4','','','2022-01-14 14:01:02','2022-01-14 14:01:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/blog-grid-4/',11,'nav_menu_item','',0),(8269,1,'2022-01-14 14:01:03','2022-01-14 14:01:03','','Left Sidebar','','publish','closed','closed','','left-sidebar-11','','','2022-01-14 14:01:03','2022-01-14 14:01:03','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/left-sidebar-11/',16,'nav_menu_item','',0),(8270,1,'2022-01-14 14:01:05','2022-01-14 14:01:05','','Without Sidebar','','publish','closed','closed','','without-sidebar-10','','','2022-01-14 14:01:05','2022-01-14 14:01:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-10/',17,'nav_menu_item','',0),(8271,1,'2022-01-14 14:01:07','2022-01-14 14:01:07','','Right Sidebar','','publish','closed','closed','','right-sidebar-11','','','2022-01-14 14:01:07','2022-01-14 14:01:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/right-sidebar-11/',18,'nav_menu_item','',0),(8272,1,'2022-01-14 14:01:09','2022-01-14 14:01:09','','Without Sidebar','','publish','closed','closed','','without-sidebar-11','','','2022-01-14 14:01:09','2022-01-14 14:01:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/without-sidebar-11/',13,'nav_menu_item','',0),(8278,1,'2022-01-14 14:01:22','2022-01-14 14:01:22',' ','','','publish','closed','closed','','8278','','','2022-01-14 14:01:22','2022-01-14 14:01:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8278/',18,'nav_menu_item','',0),(8279,1,'2022-01-14 14:01:25','2022-01-14 14:01:25',' ','','','publish','closed','closed','','8279','','','2022-01-14 14:01:25','2022-01-14 14:01:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8279/',17,'nav_menu_item','',0),(8280,1,'2022-01-14 14:01:27','2022-01-14 14:01:27',' ','','','publish','closed','closed','','8280','','','2022-01-14 14:01:27','2022-01-14 14:01:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8280/',16,'nav_menu_item','',0),(8281,1,'2022-01-14 14:01:29','2022-01-14 14:01:29',' ','','','publish','closed','closed','','8281','','','2022-01-14 14:01:29','2022-01-14 14:01:29','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8281/',28,'nav_menu_item','',0),(8282,1,'2022-01-14 14:01:32','2022-01-14 14:01:32',' ','','','publish','closed','closed','','8282','','','2022-01-14 14:01:32','2022-01-14 14:01:32','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8282/',24,'nav_menu_item','',0),(8283,1,'2022-01-14 14:01:33','2022-01-14 14:01:33',' ','','','publish','closed','closed','','8283','','','2022-01-14 14:01:33','2022-01-14 14:01:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8283/',23,'nav_menu_item','',0),(8284,1,'2022-01-14 14:01:34','2022-01-14 14:01:34',' ','','','publish','closed','closed','','8284','','','2022-01-14 14:01:34','2022-01-14 14:01:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8284/',22,'nav_menu_item','',0),(8288,1,'2022-01-14 14:01:40','2022-01-14 14:01:40','','About v.1','','publish','closed','closed','','about-v-1-3','','','2022-01-14 14:01:40','2022-01-14 14:01:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-v-1-3/',10,'nav_menu_item','',0),(8289,1,'2022-01-14 14:01:40','2022-01-14 14:01:40','','Pricing v.1','','publish','closed','closed','','pricing-v-1-3','','','2022-01-14 14:01:40','2022-01-14 14:01:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pricing-v-1-3/',27,'nav_menu_item','',0),(8290,1,'2022-01-14 14:01:42','2022-01-14 14:01:42','','Team v.1','','publish','closed','closed','','team-v-1-3','','','2022-01-14 14:01:42','2022-01-14 14:01:42','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/team-v-1-3/',15,'nav_menu_item','',0),(8291,1,'2022-01-14 14:01:42','2022-01-14 14:01:42','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-3','','','2022-01-14 14:01:42','2022-01-14 14:01:42','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/testimonials-v-1-3/',21,'nav_menu_item','',0),(8295,1,'2022-01-14 14:01:48','2022-01-14 14:01:48',' ','','','publish','closed','closed','','8295','','','2022-01-14 14:01:48','2022-01-14 14:01:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8295/',27,'nav_menu_item','',0),(8296,1,'2022-01-14 14:01:50','2022-01-14 14:01:50',' ','','','publish','closed','closed','','8296','','','2022-01-14 14:01:50','2022-01-14 14:01:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8296/',19,'nav_menu_item','',0),(8297,1,'2022-01-14 14:01:51','2022-01-14 14:01:51',' ','','','publish','closed','closed','','8297','','','2022-01-14 14:01:51','2022-01-14 14:01:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8297/',18,'nav_menu_item','',0),(8298,1,'2022-01-14 14:01:53','2022-01-14 14:01:53',' ','','','publish','closed','closed','','8298','','','2022-01-14 14:01:53','2022-01-14 14:01:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8298/',17,'nav_menu_item','',0),(8301,1,'2022-01-14 14:01:58','2022-01-14 14:01:58',' ','','','publish','closed','closed','','8301','','','2022-01-14 14:01:58','2022-01-14 14:01:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8301/',36,'nav_menu_item','',0),(8304,1,'2022-01-14 14:02:03','2022-01-14 14:02:03',' ','','','publish','closed','closed','','8304','','','2022-01-14 14:02:03','2022-01-14 14:02:03','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8304/',30,'nav_menu_item','',0),(8305,1,'2022-01-14 14:02:05','2022-01-14 14:02:05',' ','','','publish','closed','closed','','8305','','','2022-01-14 14:02:05','2022-01-14 14:02:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8305/',27,'nav_menu_item','',0),(8306,1,'2022-01-14 14:02:07','2022-01-14 14:02:07',' ','','','publish','closed','closed','','8306','','','2022-01-14 14:02:07','2022-01-14 14:02:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8306/',26,'nav_menu_item','',0),(8307,1,'2022-01-14 14:02:08','2022-01-14 14:02:08',' ','','','publish','closed','closed','','8307','','','2022-01-14 14:02:08','2022-01-14 14:02:08','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8307/',25,'nav_menu_item','',0),(8309,1,'2022-01-14 14:02:12','2022-01-14 14:02:12','','About v.1','','publish','closed','closed','','about-v-1-4','','','2022-01-14 14:02:12','2022-01-14 14:02:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/about-v-1-4/',11,'nav_menu_item','',0),(8311,1,'2022-01-14 14:02:15','2022-01-14 14:02:15','','Pricing v.1','','publish','closed','closed','','pricing-v-1-4','','','2022-01-14 14:02:15','2022-01-14 14:02:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/pricing-v-1-4/',29,'nav_menu_item','',0),(8312,1,'2022-01-14 14:02:19','2022-01-14 14:02:19','','Team v.1','','publish','closed','closed','','team-v-1-4','','','2022-01-14 14:02:19','2022-01-14 14:02:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/team-v-1-4/',16,'nav_menu_item','',0),(8313,1,'2022-01-14 14:02:20','2022-01-14 14:02:20','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-4','','','2022-01-14 14:02:20','2022-01-14 14:02:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/testimonials-v-1-4/',24,'nav_menu_item','',0),(8314,1,'2022-01-14 14:02:22','2022-01-14 14:02:22',' ','','','publish','closed','closed','','8314','','','2022-01-14 14:02:22','2022-01-14 14:02:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8314/',5,'nav_menu_item','',0),(8315,1,'2022-01-14 14:02:24','2022-01-14 14:02:24',' ','','','publish','closed','closed','','8315','','','2022-01-14 14:02:24','2022-01-14 14:02:24','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8315/',6,'nav_menu_item','',0),(8316,1,'2022-01-14 14:02:25','2022-01-14 14:02:25','','4 Columns Wide','','publish','closed','closed','','4-columns-wide-3','','','2022-01-14 14:02:25','2022-01-14 14:02:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-wide-3/',48,'nav_menu_item','',0),(8317,1,'2022-01-14 14:02:26','2022-01-14 14:02:26','','3 Columns','','publish','closed','closed','','3-columns-3','','','2022-01-14 14:02:26','2022-01-14 14:02:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/3-columns-3/',46,'nav_menu_item','',0),(8318,1,'2022-01-14 14:02:28','2022-01-14 14:02:28','','2 Columns','','publish','closed','closed','','2-columns-3','','','2022-01-14 14:02:28','2022-01-14 14:02:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/2-columns-3/',45,'nav_menu_item','',0),(8319,1,'2022-01-14 14:02:29','2022-01-14 14:02:29','','4 Columns','','publish','closed','closed','','4-columns-3','','','2022-01-14 14:02:29','2022-01-14 14:02:29','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-3/',47,'nav_menu_item','',0),(8320,1,'2022-01-14 14:02:30','2022-01-14 14:02:30',' ','','','publish','closed','closed','','8320','','','2022-01-14 14:02:30','2022-01-14 14:02:30','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8320/',31,'nav_menu_item','',0),(8321,1,'2022-01-14 14:02:31','2022-01-14 14:02:31',' ','','','publish','closed','closed','','8321','','','2022-01-14 14:02:31','2022-01-14 14:02:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8321/',7,'nav_menu_item','',0),(8322,1,'2022-01-14 14:02:33','2022-01-14 14:02:33','','4 Columns Wide','','publish','closed','closed','','4-columns-wide-4','','','2022-01-14 14:02:33','2022-01-14 14:02:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-wide-4/',6,'nav_menu_item','',0),(8323,1,'2022-01-14 14:02:34','2022-01-14 14:02:34','','3 Columns','','publish','closed','closed','','3-columns-4','','','2022-01-14 14:02:34','2022-01-14 14:02:34','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/3-columns-4/',4,'nav_menu_item','',0),(8324,1,'2022-01-14 14:02:36','2022-01-14 14:02:36','','2 Columns','','publish','closed','closed','','2-columns-4','','','2022-01-14 14:02:36','2022-01-14 14:02:36','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/2-columns-4/',3,'nav_menu_item','',0),(8325,1,'2022-01-14 14:02:37','2022-01-14 14:02:37','','4 Columns','','publish','closed','closed','','4-columns-4','','','2022-01-14 14:02:37','2022-01-14 14:02:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/4-columns-4/',5,'nav_menu_item','',0),(8326,1,'2022-01-14 14:02:38','2022-01-14 14:02:38','','Portfolio Details','','publish','closed','closed','','portfolio-details-4','','','2022-01-14 14:02:38','2022-01-14 14:02:38','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-details-4/',8,'nav_menu_item','',0),(8327,1,'2022-01-14 14:02:40','2022-01-14 14:02:40','','Portfolio','','publish','closed','closed','','portfolio-4','','','2022-01-14 14:02:40','2022-01-14 14:02:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/portfolio-4/',1,'nav_menu_item','',0),(8328,1,'2022-01-14 14:02:41','2022-01-14 14:02:41',' ','','','publish','closed','closed','','8328','','','2022-01-14 14:02:41','2022-01-14 14:02:41','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8328/',2,'nav_menu_item','',0),(8329,1,'2022-01-14 14:02:43','2022-01-14 14:02:43',' ','','','publish','closed','closed','','8329','','','2022-01-14 14:02:43','2022-01-14 14:02:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8329/',3,'nav_menu_item','',0),(8330,1,'2022-01-14 14:02:46','2022-01-14 14:02:46',' ','','','publish','closed','closed','','8330','','','2022-01-14 14:02:46','2022-01-14 14:02:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8330/',4,'nav_menu_item','',0),(8331,1,'2022-01-14 14:02:49','2022-01-14 14:02:49',' ','','','publish','closed','closed','','8331','','','2022-01-14 14:02:49','2022-01-14 14:02:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8331/',5,'nav_menu_item','',0),(8332,1,'2022-01-14 14:02:51','2022-01-14 14:02:51',' ','','','publish','closed','closed','','8332','','','2022-01-14 14:02:51','2022-01-14 14:02:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8332/',6,'nav_menu_item','',0),(8333,1,'2022-01-14 14:02:53','2022-01-14 14:02:53',' ','','','publish','closed','closed','','8333','','','2022-01-14 14:02:53','2022-01-14 14:02:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8333/',7,'nav_menu_item','',0),(8334,1,'2022-01-14 14:02:54','2022-01-14 14:02:54',' ','','','publish','closed','closed','','8334','','','2022-01-14 14:02:54','2022-01-14 14:02:54','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8334/',3,'nav_menu_item','',0),(8335,1,'2022-01-14 14:02:56','2022-01-14 14:02:56',' ','','','publish','closed','closed','','8335','','','2022-01-14 14:02:56','2022-01-14 14:02:56','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8335/',4,'nav_menu_item','',0),(8336,1,'2022-01-14 14:02:58','2022-01-14 14:02:58','','Our Services','','publish','closed','closed','','our-services-4','','','2022-01-14 14:02:58','2022-01-14 14:02:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/our-services-4/',20,'nav_menu_item','',0),(8337,1,'2022-01-14 14:03:00','2022-01-14 14:03:00',' ','','','publish','closed','closed','','8337','','','2022-01-14 14:03:00','2022-01-14 14:03:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8337/',7,'nav_menu_item','',0),(8338,1,'2022-01-14 14:03:01','2022-01-14 14:03:01',' ','','','publish','closed','closed','','8338','','','2022-01-14 14:03:01','2022-01-14 14:03:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/14/8338/',8,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (8339,1,'2022-01-17 06:58:18','2022-01-17 06:58:18','<h3 data-wow-delay=\"200ms\">\n            Prosper in this volatile market funding.\n            </h3>\n		We have uncovered the five essential elements to maximizing its value.		\n        <a href=\"#\" data-wow-delay=\"500ms\">\n                Get Started\n    </a>\n                        <img width=\"490\" height=\"773\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/man1-1.png\" alt=\"\" />            		\n                                1\n                            Team member\n                                1\n                            Active <br/>cases\n                                1\n                            Client’s reviews\n                        Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our <b>platform</b> connects companies with displaced <b>workforces</b>\n            </h3>\n                            <img width=\"176\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon1-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/strategy-consulting-2/\">Strategy &#038; Consulting</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/strategy-consulting-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon2-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/applied-intelligence-2/\">Applied Intelligence</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/applied-intelligence-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon3-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/supply-chain-operations/\">Supply Chain &#038; Operations</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/supply-chain-operations/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"188\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon4-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insight-growth/\">Insight &#038; Growth</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insight-growth/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"186\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon5-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/software-engineering/\">Software Engineering</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/software-engineering/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"197\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon6-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-process/\">Business Process</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-process/\">\n                                    Read more                                \n                            </a>\n                                                                                    <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/financial-services/\">Financial Services</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/financial-services/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"176\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon1-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-strategy/\">Business Strategy</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-strategy/\">\n                                    Read more                                \n                            </a>\n                                                                                    <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insurance-services/\">Insurance Services</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insurance-services/\">\n                                    Read more                                \n                            </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','business-2','','publish','closed','closed','','business-2','','','2022-01-17 06:58:28','2022-01-17 06:58:28','',0,'http://demoweblinks.in/ealoorconsultancy/?elementor_library=business-2',0,'elementor_library','',0),(8340,1,'2022-01-17 06:58:23','2022-01-17 06:58:23','','business-2','','inherit','closed','closed','','8339-revision-v1','','','2022-01-17 06:58:23','2022-01-17 06:58:23','',8339,'http://demoweblinks.in/ealoorconsultancy/?p=8340',0,'revision','',0),(8341,1,'2022-01-17 06:58:28','2022-01-17 06:58:28','<h3 data-wow-delay=\"200ms\">\n            Prosper in this volatile market funding.\n            </h3>\n		We have uncovered the five essential elements to maximizing its value.		\n        <a href=\"#\" data-wow-delay=\"500ms\">\n                Get Started\n    </a>\n                        <img width=\"490\" height=\"773\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/man1-1.png\" alt=\"\" />            		\n                                1\n                            Team member\n                                1\n                            Active <br/>cases\n                                1\n                            Client’s reviews\n                        Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our <b>platform</b> connects companies with displaced <b>workforces</b>\n            </h3>\n                            <img width=\"176\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon1-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/strategy-consulting-2/\">Strategy &#038; Consulting</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/strategy-consulting-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"175\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon2-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/applied-intelligence-2/\">Applied Intelligence</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/applied-intelligence-2/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"182\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon3-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/supply-chain-operations/\">Supply Chain &#038; Operations</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/supply-chain-operations/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"188\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon4-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insight-growth/\">Insight &#038; Growth</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insight-growth/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"186\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon5-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/software-engineering/\">Software Engineering</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/software-engineering/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"197\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon6-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-process/\">Business Process</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-process/\">\n                                    Read more                                \n                            </a>\n                                                                                    <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/financial-services/\">Financial Services</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/financial-services/\">\n                                    Read more                                \n                            </a>\n                            <img width=\"176\" height=\"188\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/service-icon1-1.png\" alt=\"\" />                        \n                                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-strategy/\">Business Strategy</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/business-strategy/\">\n                                    Read more                                \n                            </a>\n                                                                                    <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insurance-services/\">Insurance Services</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/insurance-services/\">\n                                    Read more                                \n                            </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','business-2','','inherit','closed','closed','','8339-revision-v1','','','2022-01-17 06:58:28','2022-01-17 06:58:28','',8339,'http://demoweblinks.in/ealoorconsultancy/?p=8341',0,'revision','',0),(8343,1,'2022-01-17 07:07:20','2022-01-17 07:07:20','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03-600x373.jpg\" width=\"600\" height=\"373\" alt=\"gallery-03\" title=\"gallery-03\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" title=\"Food industry leaders often change.\">Food industry leaders often change.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','home main','','publish','closed','closed','','home-main','','','2022-01-17 07:07:32','2022-01-17 07:07:32','',0,'http://demoweblinks.in/ealoorconsultancy/?elementor_library=home-main',0,'elementor_library','',0),(8344,1,'2022-01-17 07:07:26','2022-01-17 07:07:26','','home main','','inherit','closed','closed','','8343-revision-v1','','','2022-01-17 07:07:26','2022-01-17 07:07:26','',8343,'http://demoweblinks.in/ealoorconsultancy/?p=8344',0,'revision','',0),(8345,1,'2022-01-17 07:07:32','2022-01-17 07:07:32','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03-600x373.jpg\" width=\"600\" height=\"373\" alt=\"gallery-03\" title=\"gallery-03\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" title=\"Food industry leaders often change.\">Food industry leaders often change.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','home main','','inherit','closed','closed','','8343-revision-v1','','','2022-01-17 07:07:32','2022-01-17 07:07:32','',8343,'http://demoweblinks.in/ealoorconsultancy/?p=8345',0,'revision','',0),(8346,1,'2022-01-17 07:09:36','2022-01-17 07:09:36','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            November 4, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:09:36','2022-01-17 07:09:36','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8346',0,'revision','',0),(8347,1,'2022-01-17 07:09:38','2022-01-17 07:09:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\" title=\"Reasons to explan fast business builder.\">Reasons to explan fast business builder.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\" title=\"Blackpool polices hunt for David.\">Blackpool polices hunt for David.</a></h3>\n                                                            November 4, 2018\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        <h5>Office Locations</h5>\n        We have many brunches to help you!\n                    <a>\n                        Australia Head Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        America Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>\n                    <a>\n                        UK Office                    </a>\n                    <ul>\n                                                        <li>30 Commercial Road, Australia</li>\n                                                            <li>envato@mail.com</li>\n                                                            <li>+0188845215</li>\n                                                </ul>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:09:38','2022-01-17 07:09:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8347',0,'revision','',0),(8348,1,'2022-01-17 07:09:45','2022-01-17 07:09:45','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03-600x373.jpg\" width=\"600\" height=\"373\" alt=\"gallery-03\" title=\"gallery-03\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" title=\"Food industry leaders often change.\">Food industry leaders often change.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:09:45','2022-01-17 07:09:45','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8348',0,'revision','',0),(8349,1,'2022-01-17 07:12:12','2022-01-17 07:12:12','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03-600x373.jpg\" width=\"600\" height=\"373\" alt=\"gallery-03\" title=\"gallery-03\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" title=\"Food industry leaders often change.\">Food industry leaders often change.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:12','2022-01-17 07:12:12','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8349',0,'revision','',0),(8350,1,'2022-01-17 07:12:14','2022-01-17 07:12:14','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03-600x373.jpg\" width=\"600\" height=\"373\" alt=\"gallery-03\" title=\"gallery-03\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" title=\"Food industry leaders often change.\">Food industry leaders often change.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" title=\"How to go about intiating an start-up.\">How to go about intiating an start-up.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/gallery-03.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:14','2022-01-17 07:12:14','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8350',0,'revision','',0),(8351,1,'2022-01-17 07:12:19','2022-01-17 07:12:19','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:19','2022-01-17 07:12:19','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8351',0,'revision','',0),(8352,1,'2022-01-17 07:12:52','2022-01-17 07:12:52','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:52','2022-01-17 07:12:52','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8352',0,'revision','',0),(8353,1,'2022-01-17 07:12:54','2022-01-17 07:12:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:54','2022-01-17 07:12:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8353',0,'revision','',0),(8354,1,'2022-01-17 07:12:57','2022-01-17 07:12:57','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 07:12:57','2022-01-17 07:12:57','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8354',0,'revision','',0),(8357,1,'2019-12-13 08:25:31','2019-12-13 08:25:31','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/elementor/thumbs/theme-11-ohk30az46cr12khwk7piw16t7i0j85bx17lzlj4nd2.jpg\" title=\"theme-11\" alt=\"theme-11\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">+</a>','On behalf of World Bank, an Advocom Group.','','publish','closed','closed','','on-behalf-of-world-bank-an-advocom-group','','','2019-12-13 08:25:31','2019-12-13 08:25:31','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=case-study&amp;p=2439',0,'case-study','',0),(8358,1,'2019-12-13 08:25:50','2019-12-13 08:25:50','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" title=\"theme-07\" alt=\"theme-07\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">+</a>','Low-Carbon Investing: Commonfund & GPSU','','publish','closed','closed','','low-carbon-investing-commonfund-gpsu','','','2019-12-13 08:25:50','2019-12-13 08:25:50','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=case-study&amp;p=2440',0,'case-study','',0),(8359,1,'2019-12-13 08:26:17','2019-12-13 08:26:17','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" title=\"theme-08\" alt=\"theme-08\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">+</a>','Ant Financial: Flourishing Farmer Loans at MYbank','','publish','closed','closed','','ant-financial-flourishing-farmer-loans-at-mybank','','','2019-12-13 08:26:17','2019-12-13 08:26:17','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=case-study&amp;p=2441',0,'case-study','',0),(8360,1,'2019-12-13 08:26:38','2019-12-13 08:26:38','Case Studies\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" title=\"theme-12\" alt=\"theme-12\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">+</a>','Strategy for Norway Pension Fund Global','','publish','closed','closed','','strategy-for-norway-pension-fund-global','','','2019-12-13 08:26:38','2019-12-13 08:26:38','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=case-study&amp;p=2442',0,'case-study','',0),(8361,1,'2022-01-17 08:17:47','2022-01-17 08:17:47','','Pages','','publish','closed','closed','','pages-5','','','2022-01-17 08:17:47','2022-01-17 08:17:47','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/pages-5/',6,'nav_menu_item','',0),(8362,1,'2022-01-17 08:17:49','2022-01-17 08:17:49','','Gallery','','publish','closed','closed','','gallery','','','2022-01-17 08:17:49','2022-01-17 08:17:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/gallery/',6,'nav_menu_item','',0),(8363,1,'2022-01-17 08:17:50','2022-01-17 08:17:50','','Error 404','','publish','closed','closed','','error-404-5','','','2022-01-17 08:17:50','2022-01-17 08:17:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/error-404-5/',33,'nav_menu_item','',0),(8364,1,'2022-01-17 08:17:52','2022-01-17 08:17:52','','Pages','','publish','closed','closed','','pages-6','','','2022-01-17 08:17:52','2022-01-17 08:17:52','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/pages-6/',6,'nav_menu_item','',0),(8365,1,'2022-01-17 08:17:53','2022-01-17 08:17:53','','Error 404','','publish','closed','closed','','error-404-6','','','2022-01-17 08:17:53','2022-01-17 08:17:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/error-404-6/',28,'nav_menu_item','',0),(8367,1,'2022-01-17 08:18:14','2022-01-17 08:18:14','','Pricing v.1','','publish','closed','closed','','pricing-v-1-5','','','2022-01-17 08:18:14','2022-01-17 08:18:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/pricing-v-1-5/',25,'nav_menu_item','',0),(8368,1,'2022-01-17 08:18:15','2022-01-17 08:18:15','','Demos','','publish','closed','closed','','demos-6','','','2022-01-17 08:18:15','2022-01-17 08:18:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/demos-6/',1,'nav_menu_item','',0),(8369,1,'2022-01-17 08:18:16','2022-01-17 08:18:16','','Demos','','publish','closed','closed','','demos-7','','','2022-01-17 08:18:16','2022-01-17 08:18:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/demos-7/',1,'nav_menu_item','',0),(8370,1,'2022-01-17 08:18:17','2022-01-17 08:18:17','','Elements','','publish','closed','closed','','elements-3','','','2022-01-17 08:18:17','2022-01-17 08:18:17','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/elements-3/',57,'nav_menu_item','',0),(8371,1,'2022-01-17 08:18:19','2022-01-17 08:18:19','','Home','','publish','closed','closed','','home-2','','','2022-01-17 08:18:19','2022-01-17 08:18:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/home-2/',1,'nav_menu_item','',0),(8372,1,'2022-01-17 08:18:19','2022-01-17 08:18:19','','Services','','publish','closed','closed','','services-9','','','2022-01-17 08:18:19','2022-01-17 08:18:19','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/services-9/',3,'nav_menu_item','',0),(8373,1,'2022-01-17 08:18:21','2022-01-17 08:18:21','','About Us','','publish','closed','closed','','about-us-6','','','2022-01-17 08:18:21','2022-01-17 08:18:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-us-6/',2,'nav_menu_item','',0),(8374,1,'2022-01-17 08:18:22','2022-01-17 08:18:22','','Case Studies','','publish','closed','closed','','case-studies','','','2022-01-17 08:18:22','2022-01-17 08:18:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/case-studies/',4,'nav_menu_item','',0),(8375,1,'2022-01-17 08:18:24','2022-01-17 08:18:24','','Testimonils','','publish','closed','closed','','testimonils','','','2022-01-17 08:18:24','2022-01-17 08:18:24','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/testimonils/',5,'nav_menu_item','',0),(8376,1,'2022-01-17 08:18:25','2022-01-17 08:18:25','','Pricing','','publish','closed','closed','','pricing-2','','','2022-01-17 08:18:25','2022-01-17 08:18:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/pricing-2/',6,'nav_menu_item','',0),(8379,1,'2019-11-05 02:33:58','2019-11-05 02:33:58','<a href=\"https://ealoorconsultancy.co.uk/news-events/gloucester-hospitals-nhs-foundations-trust-direct-interview/\">Gloucester Hospitals NHS Foundations Trust – Direct Interview</a>\n<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>One way flight to the UK</li>\n 	<li>One month Free Accommodation</li>\n 	<li>Free Certificate Of Sponsorship</li>\n 	<li>Free 1 x OSCE exam cost</li>\n 	<li>Refund the Medical Exams / TB Screening</li>\n 	<li>Refund Visa Application</li>\n 	<li>Refund the Immigration Health Surcharge</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Theatre and Surgery Nurses with NMC Decision letter.</li>\n 	<li>Theatre and Surgery Nurses: New assessment completed candidates.</li>\n 	<li>Candidates ready to travel on April 2020</li>\n 	<li>Immediate COS for interview successful candidates.</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Strategy for Norway\'s Peion to Fund Global.','','publish','closed','open','','strategy-for-norways-peion-to-fund-global','','','2022-01-19 11:35:14','2022-01-19 11:35:14','',0,'https://demo.casethemes.net/consultio-marketing/?p=166',0,'post','',0),(8381,1,'2019-11-13 04:05:46','2019-11-13 04:05:46','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" title=\"theme-01\" alt=\"theme-01\" />											\n	    <h3>\n        Digital Analysis    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-marketing/portfolio/revenue-growth/\">+</a>','Digital Analysis','','publish','closed','closed','','digital-analysis','','','2019-11-13 04:05:46','2019-11-13 04:05:46','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=portfolio&amp;p=583',0,'portfolio','',0),(8382,1,'2019-11-11 09:21:33','2019-11-11 09:21:33','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Market Research','','publish','closed','closed','','market-research','','','2019-11-11 09:21:33','2019-11-11 09:21:33','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=446',0,'service','',0),(8383,1,'2019-11-11 09:22:21','2019-11-11 09:22:21','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','SEO Optimization','','publish','closed','closed','','seo-optimization-3','','','2019-11-11 09:22:21','2019-11-11 09:22:21','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=448',0,'service','',0),(8384,1,'2019-11-13 07:57:41','2019-11-13 07:57:41','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                Personal Care\n                Super Support\n                Guaranteed\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                    <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\n                                Photography is the core of everything we do, photography equipment, camera, photography.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\n                                When there is a key element of your organisation that is limiting your people’s to engagement performance.                            \n                                                                            <h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\n                                Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>    \n	    <h3>\n        Contact    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n        Brochures    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Chart management','','publish','closed','closed','','chart-management','','','2019-11-13 07:57:41','2019-11-13 07:57:41','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=645',0,'service','',0),(8385,1,'2019-11-13 07:58:38','2019-11-13 07:58:38','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','SEO Marketing','','publish','closed','closed','','seo-marketing','','','2019-11-13 07:58:38','2019-11-13 07:58:38','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=647',0,'service','',0),(8386,1,'2019-11-13 07:59:06','2019-11-13 07:59:06','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Content Marketing','','publish','closed','closed','','content-marketing-2','','','2019-11-13 07:59:06','2019-11-13 07:59:06','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=649',0,'service','',0),(8387,1,'2019-11-13 08:00:23','2019-11-13 08:00:23','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-marketing/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-marketing/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Digital Marketing','','publish','closed','closed','','digital-marketing','','','2019-11-13 08:00:23','2019-11-13 08:00:23','',0,'https://demo.casethemes.net/consultio-marketing/?post_type=service&amp;p=651',0,'service','',0),(8388,1,'2022-01-17 08:21:50','2022-01-17 08:21:50',' ','','','publish','closed','closed','','8388','','','2022-01-17 08:21:50','2022-01-17 08:21:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8388/',24,'nav_menu_item','',0),(8389,1,'2022-01-17 08:21:53','2022-01-17 08:21:53','','FAQs','','publish','closed','closed','','faqs-3','','','2022-01-17 08:21:53','2022-01-17 08:21:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/faqs-3/',27,'nav_menu_item','',0),(8390,1,'2022-01-17 08:21:56','2022-01-17 08:21:56','','Our Team','','publish','closed','closed','','our-team-5','','','2022-01-17 08:21:56','2022-01-17 08:21:56','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/our-team-5/',12,'nav_menu_item','',0),(8391,1,'2022-01-17 08:21:59','2022-01-17 08:21:59','','About us','','publish','closed','closed','','about-us-7','','','2022-01-17 08:21:59','2022-01-17 08:21:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-us-7/',7,'nav_menu_item','',0),(8393,1,'2022-01-17 08:22:04','2022-01-17 08:22:04',' ','','','publish','closed','closed','','8393','','','2022-01-17 08:22:04','2022-01-17 08:22:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8393/',1,'nav_menu_item','',0),(8394,1,'2022-01-17 08:22:06','2022-01-17 08:22:06',' ','','','publish','closed','closed','','8394','','','2022-01-17 08:22:06','2022-01-17 08:22:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8394/',2,'nav_menu_item','',0),(8395,1,'2022-01-17 08:22:09','2022-01-17 08:22:09',' ','','','publish','closed','closed','','8395','','','2022-01-17 08:22:09','2022-01-17 08:22:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8395/',4,'nav_menu_item','',0),(8396,1,'2022-01-17 08:22:11','2022-01-17 08:22:11','','About us','','publish','closed','closed','','about-us-8','','','2022-01-17 08:22:11','2022-01-17 08:22:11','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-us-8/',5,'nav_menu_item','',0),(8398,1,'2022-01-17 08:22:18','2022-01-17 08:22:18','','Blog','','publish','closed','closed','','blog-7','','','2022-01-17 08:22:18','2022-01-17 08:22:18','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/blog-7/',43,'nav_menu_item','',0),(8399,1,'2022-01-17 08:22:20','2022-01-17 08:22:20',' ','','','publish','closed','closed','','8399','','','2022-01-17 08:22:20','2022-01-17 08:22:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8399/',49,'nav_menu_item','',0),(8400,1,'2022-01-17 08:22:21','2022-01-17 08:22:21','','Blog Grid','','publish','closed','closed','','blog-grid-5','','','2022-01-17 08:22:21','2022-01-17 08:22:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/blog-grid-5/',45,'nav_menu_item','',0),(8401,1,'2022-01-17 08:22:22','2022-01-17 08:22:22',' ','','','publish','closed','closed','','8401','','','2022-01-17 08:22:22','2022-01-17 08:22:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8401/',44,'nav_menu_item','',0),(8402,1,'2022-01-17 08:22:23','2022-01-17 08:22:23','','Without Sidebar','','publish','closed','closed','','without-sidebar-13','','','2022-01-17 08:22:23','2022-01-17 08:22:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/without-sidebar-13/',47,'nav_menu_item','',0),(8403,1,'2022-01-17 08:22:24','2022-01-17 08:22:24','','Right Sidebar','','publish','closed','closed','','right-sidebar-13','','','2022-01-17 08:22:24','2022-01-17 08:22:24','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/right-sidebar-13/',48,'nav_menu_item','',0),(8404,1,'2022-01-17 08:22:25','2022-01-17 08:22:25','','Left Sidebar','','publish','closed','closed','','left-sidebar-13','','','2022-01-17 08:22:25','2022-01-17 08:22:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/left-sidebar-13/',46,'nav_menu_item','',0),(8405,1,'2022-01-17 08:22:25','2022-01-17 08:22:25','','Without Sidebar','','publish','closed','closed','','without-sidebar-14','','','2022-01-17 08:22:25','2022-01-17 08:22:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/without-sidebar-14/',51,'nav_menu_item','',0),(8406,1,'2022-01-17 08:22:26','2022-01-17 08:22:26','','Left Sidebar','','publish','closed','closed','','left-sidebar-14','','','2022-01-17 08:22:26','2022-01-17 08:22:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/left-sidebar-14/',50,'nav_menu_item','',0),(8407,1,'2022-01-17 08:22:27','2022-01-17 08:22:27','','Right Sidebar','','publish','closed','closed','','right-sidebar-14','','','2022-01-17 08:22:27','2022-01-17 08:22:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/right-sidebar-14/',52,'nav_menu_item','',0),(8412,1,'2022-01-17 08:22:33','2022-01-17 08:22:33',' ','','','publish','closed','closed','','8412','','','2022-01-17 08:22:33','2022-01-17 08:22:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8412/',17,'nav_menu_item','',0),(8413,1,'2022-01-17 08:22:35','2022-01-17 08:22:35',' ','','','publish','closed','closed','','8413','','','2022-01-17 08:22:35','2022-01-17 08:22:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8413/',19,'nav_menu_item','',0),(8414,1,'2022-01-17 08:22:35','2022-01-17 08:22:35',' ','','','publish','closed','closed','','8414','','','2022-01-17 08:22:35','2022-01-17 08:22:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8414/',4,'nav_menu_item','',0),(8415,1,'2022-01-17 08:22:37','2022-01-17 08:22:37',' ','','','publish','closed','closed','','8415','','','2022-01-17 08:22:37','2022-01-17 08:22:37','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8415/',3,'nav_menu_item','',0),(8416,1,'2022-01-17 08:22:38','2022-01-17 08:22:38','','Services','','publish','closed','closed','','services-10','','','2022-01-17 08:22:38','2022-01-17 08:22:38','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/services-10/',2,'nav_menu_item','',0),(8417,1,'2022-01-17 08:22:39','2022-01-17 08:22:39',' ','','','publish','closed','closed','','8417','','','2022-01-17 08:22:39','2022-01-17 08:22:39','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8417/',41,'nav_menu_item','',0),(8418,1,'2022-01-17 08:22:40','2022-01-17 08:22:40',' ','','','publish','closed','closed','','8418','','','2022-01-17 08:22:40','2022-01-17 08:22:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8418/',40,'nav_menu_item','',0),(8419,1,'2022-01-17 08:22:43','2022-01-17 08:22:43','','Portfolio','','publish','closed','closed','','portfolio-5','','','2022-01-17 08:22:43','2022-01-17 08:22:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/portfolio-5/',39,'nav_menu_item','',0),(8420,1,'2022-01-17 08:22:45','2022-01-17 08:22:45','','Service Details','','publish','closed','closed','','service-details','','','2022-01-17 08:22:45','2022-01-17 08:22:45','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/service-details/',5,'nav_menu_item','',0),(8421,1,'2022-01-17 08:22:46','2022-01-17 08:22:46','','Services','','publish','closed','closed','','services-11','','','2022-01-17 08:22:46','2022-01-17 08:22:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/services-11/',3,'nav_menu_item','',0),(8422,1,'2022-01-17 08:22:48','2022-01-17 08:22:48',' ','','','publish','closed','closed','','8422','','','2022-01-17 08:22:48','2022-01-17 08:22:48','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8422/',7,'nav_menu_item','',0),(8423,1,'2022-01-17 08:22:49','2022-01-17 08:22:49','','News','','publish','closed','closed','','news-3','','','2022-01-17 08:22:49','2022-01-17 08:22:49','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/news-3/',9,'nav_menu_item','',0),(8424,1,'2022-01-17 08:22:50','2022-01-17 08:22:50','','Portfolio','','publish','closed','closed','','portfolio-6','','','2022-01-17 08:22:50','2022-01-17 08:22:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/portfolio-6/',10,'nav_menu_item','',0),(8425,1,'2022-01-17 08:22:51','2022-01-17 08:22:51','','Portfolio Details','','publish','closed','closed','','portfolio-details-5','','','2022-01-17 08:22:51','2022-01-17 08:22:51','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/portfolio-details-5/',42,'nav_menu_item','',0),(8426,1,'2022-01-17 08:22:52','2022-01-17 08:22:52',' ','','','publish','closed','closed','','8426','','','2022-01-17 08:22:52','2022-01-17 08:22:52','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8426/',38,'nav_menu_item','',0),(8427,1,'2022-01-17 08:22:54','2022-01-17 08:22:54','','Products','','publish','closed','closed','','products-3','','','2022-01-17 08:22:54','2022-01-17 08:22:54','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/products-3/',35,'nav_menu_item','',0),(8428,1,'2022-01-17 08:22:54','2022-01-17 08:22:54',' ','','','publish','closed','closed','','8428','','','2022-01-17 08:22:54','2022-01-17 08:22:54','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8428/',34,'nav_menu_item','',0),(8429,1,'2022-01-17 08:22:56','2022-01-17 08:22:56','','Wishlist','','publish','closed','closed','','wishlist-3','','','2022-01-17 08:22:56','2022-01-17 08:22:56','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/wishlist-3/',37,'nav_menu_item','',0),(8430,1,'2022-01-17 08:22:58','2022-01-17 08:22:58',' ','','','publish','closed','closed','','8430','','','2022-01-17 08:22:58','2022-01-17 08:22:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8430/',2,'nav_menu_item','',0),(8431,1,'2022-01-17 08:22:59','2022-01-17 08:22:59',' ','','','publish','closed','closed','','8431','','','2022-01-17 08:22:59','2022-01-17 08:22:59','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8431/',3,'nav_menu_item','',0),(8432,1,'2022-01-17 08:23:01','2022-01-17 08:23:01',' ','','','publish','closed','closed','','8432','','','2022-01-17 08:23:01','2022-01-17 08:23:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8432/',4,'nav_menu_item','',0),(8433,1,'2022-01-17 08:23:02','2022-01-17 08:23:02',' ','','','publish','closed','closed','','8433','','','2022-01-17 08:23:02','2022-01-17 08:23:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8433/',1,'nav_menu_item','',0),(8434,1,'2022-01-17 08:23:04','2022-01-17 08:23:04',' ','','','publish','closed','closed','','8434','','','2022-01-17 08:23:04','2022-01-17 08:23:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8434/',5,'nav_menu_item','',0),(8435,1,'2022-01-17 08:23:05','2022-01-17 08:23:05',' ','','','publish','closed','closed','','8435','','','2022-01-17 08:23:05','2022-01-17 08:23:05','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8435/',18,'nav_menu_item','',0),(8436,1,'2022-01-17 08:23:06','2022-01-17 08:23:06','','Services','','publish','closed','closed','','services-12','','','2022-01-17 08:23:06','2022-01-17 08:23:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/services-12/',2,'nav_menu_item','',0),(8437,1,'2022-01-17 08:23:07','2022-01-17 08:23:07',' ','','','publish','closed','closed','','8437','','','2022-01-17 08:23:07','2022-01-17 08:23:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8437/',4,'nav_menu_item','',0),(8438,1,'2022-01-17 08:23:09','2022-01-17 08:23:09','','Service Details','','publish','closed','closed','','service-details-2','','','2022-01-17 08:23:09','2022-01-17 08:23:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/service-details-2/',5,'nav_menu_item','',0),(8439,1,'2022-01-17 08:23:09','2022-01-17 08:23:09',' ','','','publish','closed','closed','','8439','','','2022-01-17 08:23:09','2022-01-17 08:23:09','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8439/',3,'nav_menu_item','',0),(8440,1,'2022-01-17 08:23:11','2022-01-17 08:23:11','','About us','','publish','closed','closed','','about-us-9','','','2022-01-17 08:23:11','2022-01-17 08:23:11','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-us-9/',7,'nav_menu_item','',0),(8441,1,'2022-01-17 08:23:12','2022-01-17 08:23:12',' ','','','publish','closed','closed','','8441','','','2022-01-17 08:23:12','2022-01-17 08:23:12','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8441/',27,'nav_menu_item','',0),(8442,1,'2022-01-17 08:23:13','2022-01-17 08:23:13',' ','','','publish','closed','closed','','8442','','','2022-01-17 08:23:13','2022-01-17 08:23:13','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8442/',24,'nav_menu_item','',0),(8443,1,'2022-01-17 08:23:15','2022-01-17 08:23:15','','Our Team','','publish','closed','closed','','our-team-6','','','2022-01-17 08:23:15','2022-01-17 08:23:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/our-team-6/',12,'nav_menu_item','',0),(8444,1,'2022-01-17 08:23:16','2022-01-17 08:23:16',' ','','','publish','closed','closed','','8444','','','2022-01-17 08:23:16','2022-01-17 08:23:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8444/',17,'nav_menu_item','',0),(8445,1,'2022-01-17 08:23:17','2022-01-17 08:23:17',' ','','','publish','closed','closed','','8445','','','2022-01-17 08:23:17','2022-01-17 08:23:17','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8445/',18,'nav_menu_item','',0),(8446,1,'2022-01-17 08:23:18','2022-01-17 08:23:18',' ','','','publish','closed','closed','','8446','','','2022-01-17 08:23:18','2022-01-17 08:23:18','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8446/',23,'nav_menu_item','',0),(8447,1,'2022-01-17 08:23:20','2022-01-17 08:23:20','','Blog','','publish','closed','closed','','blog-8','','','2022-01-17 08:23:20','2022-01-17 08:23:20','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/blog-8/',1,'nav_menu_item','',0),(8448,1,'2022-01-17 08:23:21','2022-01-17 08:23:21',' ','','','publish','closed','closed','','8448','','','2022-01-17 08:23:21','2022-01-17 08:23:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8448/',7,'nav_menu_item','',0),(8449,1,'2022-01-17 08:23:22','2022-01-17 08:23:22',' ','','','publish','closed','closed','','8449','','','2022-01-17 08:23:22','2022-01-17 08:23:22','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8449/',2,'nav_menu_item','',0),(8450,1,'2022-01-17 08:23:24','2022-01-17 08:23:24','','Left Sidebar','','publish','closed','closed','','left-sidebar-16','','','2022-01-17 08:23:24','2022-01-17 08:23:24','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/left-sidebar-16/',4,'nav_menu_item','',0),(8451,1,'2022-01-17 08:23:25','2022-01-17 08:23:25','','Right Sidebar','','publish','closed','closed','','right-sidebar-16','','','2022-01-17 08:23:25','2022-01-17 08:23:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/right-sidebar-16/',6,'nav_menu_item','',0),(8452,1,'2022-01-17 08:23:26','2022-01-17 08:23:26','','Blog Grid','','publish','closed','closed','','blog-grid-6','','','2022-01-17 08:23:26','2022-01-17 08:23:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/blog-grid-6/',3,'nav_menu_item','',0),(8453,1,'2022-01-17 08:23:27','2022-01-17 08:23:27','','Left Sidebar','','publish','closed','closed','','left-sidebar-17','','','2022-01-17 08:23:27','2022-01-17 08:23:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/left-sidebar-17/',8,'nav_menu_item','',0),(8454,1,'2022-01-17 08:23:28','2022-01-17 08:23:28','','Without Sidebar','','publish','closed','closed','','without-sidebar-16','','','2022-01-17 08:23:28','2022-01-17 08:23:28','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/without-sidebar-16/',9,'nav_menu_item','',0),(8455,1,'2022-01-17 08:23:30','2022-01-17 08:23:30','','Right Sidebar','','publish','closed','closed','','right-sidebar-17','','','2022-01-17 08:23:30','2022-01-17 08:23:30','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/right-sidebar-17/',10,'nav_menu_item','',0),(8456,1,'2022-01-17 08:23:31','2022-01-17 08:23:31','','Without Sidebar','','publish','closed','closed','','without-sidebar-17','','','2022-01-17 08:23:31','2022-01-17 08:23:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/without-sidebar-17/',5,'nav_menu_item','',0),(8461,1,'2022-01-17 08:23:39','2022-01-17 08:23:39',' ','','','publish','closed','closed','','8461','','','2022-01-17 08:23:39','2022-01-17 08:23:39','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8461/',19,'nav_menu_item','',0),(8462,1,'2022-01-17 08:23:40','2022-01-17 08:23:40',' ','','','publish','closed','closed','','8462','','','2022-01-17 08:23:40','2022-01-17 08:23:40','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8462/',20,'nav_menu_item','',0),(8463,1,'2022-01-17 08:23:42','2022-01-17 08:23:42',' ','','','publish','closed','closed','','8463','','','2022-01-17 08:23:42','2022-01-17 08:23:42','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8463/',15,'nav_menu_item','',0),(8464,1,'2022-01-17 08:23:44','2022-01-17 08:23:44','','Wishlist','','publish','closed','closed','','wishlist-4','','','2022-01-17 08:23:44','2022-01-17 08:23:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/wishlist-4/',18,'nav_menu_item','',0),(8465,1,'2022-01-17 08:23:46','2022-01-17 08:23:46','','Products','','publish','closed','closed','','products-4','','','2022-01-17 08:23:46','2022-01-17 08:23:46','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/products-4/',16,'nav_menu_item','',0),(8467,1,'2022-01-17 08:23:50','2022-01-17 08:23:50','','Portfolio','','publish','closed','closed','','portfolio-7','','','2022-01-17 08:23:50','2022-01-17 08:23:50','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/portfolio-7/',29,'nav_menu_item','',0),(8468,1,'2022-01-17 08:23:53','2022-01-17 08:23:53',' ','','','publish','closed','closed','','8468','','','2022-01-17 08:23:53','2022-01-17 08:23:53','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8468/',31,'nav_menu_item','',0),(8469,1,'2022-01-17 08:23:55','2022-01-17 08:23:55',' ','','','publish','closed','closed','','8469','','','2022-01-17 08:23:55','2022-01-17 08:23:55','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8469/',30,'nav_menu_item','',0),(8470,1,'2022-01-17 08:23:57','2022-01-17 08:23:57','','Portfolio Details','','publish','closed','closed','','portfolio-details-6','','','2022-01-17 08:23:57','2022-01-17 08:23:57','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/portfolio-details-6/',32,'nav_menu_item','',0),(8471,1,'2022-01-17 08:23:58','2022-01-17 08:23:58',' ','','','publish','closed','closed','','8471','','','2022-01-17 08:23:58','2022-01-17 08:23:58','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8471/',16,'nav_menu_item','',0),(8472,1,'2022-01-17 08:24:00','2022-01-17 08:24:00',' ','','','publish','closed','closed','','8472','','','2022-01-17 08:24:00','2022-01-17 08:24:00','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8472/',15,'nav_menu_item','',0),(8473,1,'2022-01-17 08:24:01','2022-01-17 08:24:01',' ','','','publish','closed','closed','','8473','','','2022-01-17 08:24:01','2022-01-17 08:24:01','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8473/',14,'nav_menu_item','',0),(8474,1,'2022-01-17 08:24:02','2022-01-17 08:24:02',' ','','','publish','closed','closed','','8474','','','2022-01-17 08:24:02','2022-01-17 08:24:02','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8474/',26,'nav_menu_item','',0),(8475,1,'2022-01-17 08:24:04','2022-01-17 08:24:04',' ','','','publish','closed','closed','','8475','','','2022-01-17 08:24:04','2022-01-17 08:24:04','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8475/',22,'nav_menu_item','',0),(8476,1,'2022-01-17 08:24:06','2022-01-17 08:24:06',' ','','','publish','closed','closed','','8476','','','2022-01-17 08:24:06','2022-01-17 08:24:06','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8476/',21,'nav_menu_item','',0),(8477,1,'2022-01-17 08:24:07','2022-01-17 08:24:07',' ','','','publish','closed','closed','','8477','','','2022-01-17 08:24:07','2022-01-17 08:24:07','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8477/',20,'nav_menu_item','',0),(8481,1,'2022-01-17 08:24:14','2022-01-17 08:24:14','','About v.1','','publish','closed','closed','','about-v-1-5','','','2022-01-17 08:24:14','2022-01-17 08:24:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-v-1-5/',8,'nav_menu_item','',0),(8482,1,'2022-01-17 08:24:14','2022-01-17 08:24:14','','Pricing v.1','','publish','closed','closed','','pricing-v-1-6','','','2022-01-17 08:24:14','2022-01-17 08:24:14','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/pricing-v-1-6/',25,'nav_menu_item','',0),(8483,1,'2022-01-17 08:24:15','2022-01-17 08:24:15','','Team v.1','','publish','closed','closed','','team-v-1-5','','','2022-01-17 08:24:15','2022-01-17 08:24:15','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/team-v-1-5/',13,'nav_menu_item','',0),(8484,1,'2022-01-17 08:24:16','2022-01-17 08:24:16','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-5','','','2022-01-17 08:24:16','2022-01-17 08:24:16','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/testimonials-v-1-5/',19,'nav_menu_item','',0),(8488,1,'2022-01-17 08:24:21','2022-01-17 08:24:21',' ','','','publish','closed','closed','','8488','','','2022-01-17 08:24:21','2022-01-17 08:24:21','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8488/',25,'nav_menu_item','',0),(8489,1,'2022-01-17 08:24:23','2022-01-17 08:24:23',' ','','','publish','closed','closed','','8489','','','2022-01-17 08:24:23','2022-01-17 08:24:23','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8489/',16,'nav_menu_item','',0),(8490,1,'2022-01-17 08:24:25','2022-01-17 08:24:25',' ','','','publish','closed','closed','','8490','','','2022-01-17 08:24:25','2022-01-17 08:24:25','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8490/',15,'nav_menu_item','',0),(8491,1,'2022-01-17 08:24:26','2022-01-17 08:24:26',' ','','','publish','closed','closed','','8491','','','2022-01-17 08:24:26','2022-01-17 08:24:26','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8491/',14,'nav_menu_item','',0),(8492,1,'2022-01-17 08:24:27','2022-01-17 08:24:27',' ','','','publish','closed','closed','','8492','','','2022-01-17 08:24:27','2022-01-17 08:24:27','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8492/',32,'nav_menu_item','',0),(8495,1,'2022-01-17 08:24:31','2022-01-17 08:24:31',' ','','','publish','closed','closed','','8495','','','2022-01-17 08:24:31','2022-01-17 08:24:31','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8495/',26,'nav_menu_item','',0),(8496,1,'2022-01-17 08:24:33','2022-01-17 08:24:33',' ','','','publish','closed','closed','','8496','','','2022-01-17 08:24:33','2022-01-17 08:24:33','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8496/',23,'nav_menu_item','',0),(8497,1,'2022-01-17 08:24:35','2022-01-17 08:24:35',' ','','','publish','closed','closed','','8497','','','2022-01-17 08:24:35','2022-01-17 08:24:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8497/',22,'nav_menu_item','',0),(8498,1,'2022-01-17 08:24:36','2022-01-17 08:24:36',' ','','','publish','closed','closed','','8498','','','2022-01-17 08:24:36','2022-01-17 08:24:36','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/8498/',21,'nav_menu_item','',0),(8502,1,'2022-01-17 08:24:43','2022-01-17 08:24:43','','About v.1','','publish','closed','closed','','about-v-1-6','','','2022-01-17 08:24:43','2022-01-17 08:24:43','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/about-v-1-6/',8,'nav_menu_item','',0),(8503,1,'2022-01-17 08:24:44','2022-01-17 08:24:44','','Team v.1','','publish','closed','closed','','team-v-1-6','','','2022-01-17 08:24:44','2022-01-17 08:24:44','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/team-v-1-6/',13,'nav_menu_item','',0),(8504,1,'2022-01-17 08:24:45','2022-01-17 08:24:45','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-6','','','2022-01-17 08:24:45','2022-01-17 08:24:45','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/17/testimonials-v-1-6/',20,'nav_menu_item','',0),(8505,1,'2022-01-17 08:30:56','2022-01-17 08:30:56','<a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"94\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-shape.png\" alt=\"\" />															\n        <h3 data-wow-delay=\"ms\">\n            Prosper in this volatile market funding.\n            </h3>\n		Without consulting, plans stay as plans. so need consulting for marketing		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/team-v-2/\" data-wow-delay=\"ms\">\n                Our team\n    </a>\n                        Featured Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            The fields where we provide our services\n            </h3>\n		<b>Service Marketing:</b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\"></a>\n                                            We develop the relationships that underpin the next phase in your organisation’s&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">Digital Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme24\" title=\"theme24\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\"></a>\n                                            The development of your next business plan will be executed by a&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">Content Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-05\" title=\"theme-05\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\"></a>\n                                            What separates York agency from all other web design agencies is the&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">SEO Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\"></a>\n                                            Graphic design is the process of visual and problem-solving using one or&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">Chart management</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">\n                                Read more\n                            </a>\n															<img width=\"630\" height=\"667\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about.png 630w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about-283x300.png 283w\" sizes=\"(max-width: 630px) 100vw, 630px\" />															\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            We are Consultio, stablished Since\n<small>1999.</small>\n            </h3>\n		When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.		\n            <img width=\"56\" height=\"57\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon1.png\" alt=\"\" />        \n                    <h3>\n                Our Mission            </h3>\n                Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\n            <img width=\"56\" height=\"54\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon2.png\" alt=\"\" />        \n                    <h3>\n                Our Value            </h3>\n                A client once told us that where others focus on one star one issue we see the whole sky. \n                        Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            All services which we have provided\n            </h3>\n		Definition of <b>Provide Services. Provide Services</b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance</b> to a person, business or other entity.		\n                                <img width=\"150\" height=\"148\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon1.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/social-media-marketing/\">Social Media Marketing</a></h3>\n                                    Social media marketing is the use of social media platforms to connect with your audience to build your brand, increase sales, and drive website traffic.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/social-media-marketing/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon2.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/search-engine-optimization/\">Search Engine Optimization</a></h3>\n                                    Looking for higher rankings and traffic through Search Engine Optimization? The Beginner\'s Guide to SEO has been read over 10 million times.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/search-engine-optimization/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon3.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development-2/\">Web Development</a></h3>\n                                    Front-end web developers are responsible for how a website looks. They create the site\'s layout and integrate graphics, applications.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development-2/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon4.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/ppc-advertising/\">PPC Advertising</a></h3>\n                                    At a minimum, marketing the PPP requires advertising the launch is an online advertising method that plays an audio advertisement on websites.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/ppc-advertising/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon5.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/apps-development/\">Apps Development</a></h3>\n                                    Build powerful, process-based applications to solve everyday business problems. Join 4 million+ users.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/apps-development/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon6.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2-2/\">Content Marketing</a></h3>\n                                    Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2-2/\"></a>\n        <a href=\"https://demo.casethemes.net/consultio-marketing/services-v-1/\" data-wow-delay=\"ms\">\n                View more\n    </a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            A case study focuses on a single event.\n            </h3>\n		A <b>case study</b> is an in-depth study of one person, group, or event. Much of Freud&#8217;s work and theories were developed through the use of individual <b>case studies.</b>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/sustainability/\" rel=\"tag\">Sustainability</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-200x200.jpg\" width=\"200\" height=\"200\" alt=\"h-case1\" title=\"h-case1\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/financial/\" rel=\"tag\">Financial</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/tax-management/\" rel=\"tag\">Tax Management</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/investing/\" rel=\"tag\">Investing</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/business/\" rel=\"tag\">Business</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/marketing/\" rel=\"tag\">Marketing</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\"></a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Steps                                            \n	    <h3 data-wow-delay=\"ms\">\n            Take some easy steps for processing\n            </h3>\n		Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.		\n                        1\n                                                    <h3>Contact us first</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Contact us</a>\n                        2\n                                                    <h3>Consult with us</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Appoinment</a>\n                        3\n                                                    <h3>Place Order</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Order now</a>\n                        4\n                                                    <h3>Make Payment</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Payment</a>\n                        Contact                                            \n	    <h3 data-wow-delay=\"ms\">\n            Want to do business with us?\n            </h3>\n		In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/contact/\" data-wow-delay=\"ms\">\n                Contact us\n    </a>\n                                            Our Value\n                                            Our Mission\n                                            Payroll Service\n                                            We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                                            Our professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                                            People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                        Fun facts                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have achieved great Funfacts.\n            </h3>\n                                1\n                k\n                            Happy <cite>Clients</cite>\n                                1\n                +\n                            Expert <cite>Team</cite>\n                                1\n                +\n                            Awards <cite>Winner</cite>\n                                1\n                +\n                            Positive <cite>Reviews</cite>\n                        Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We offer the best price for you!\n            </h3>\n		Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business&#8217;s marketing plan.		\n                                                                                    Monthly        \n                                                                                    Yearly Save 20%        \n                                            <style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#000000;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}</style>		\n					        <section data-id=\"33a40038\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n        </section>\n                                            <style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#000000;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}</style>		\n					        <section data-id=\"7f5cbd63\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n        </section>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','marketing-home','','publish','closed','closed','','marketing-home','','','2022-01-17 08:31:05','2022-01-17 08:31:05','',0,'http://demoweblinks.in/ealoorconsultancy/?elementor_library=marketing-home',0,'elementor_library','',0),(8506,1,'2022-01-17 08:30:59','2022-01-17 08:30:59','','marketing-home','','inherit','closed','closed','','8505-revision-v1','','','2022-01-17 08:30:59','2022-01-17 08:30:59','',8505,'http://demoweblinks.in/ealoorconsultancy/?p=8506',0,'revision','',0),(8507,1,'2022-01-17 08:31:05','2022-01-17 08:31:05','<a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"94\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/logo-shape.png\" alt=\"\" />															\n        <h3 data-wow-delay=\"ms\">\n            Prosper in this volatile market funding.\n            </h3>\n		Without consulting, plans stay as plans. so need consulting for marketing		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/team-v-2/\" data-wow-delay=\"ms\">\n                Our team\n    </a>\n                        Featured Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            The fields where we provide our services\n            </h3>\n		<b>Service Marketing:</b> Service marketing is marketing based on relationship and value. It may be used to market a service or a product. With the increasing prominence of services in the global economy.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\"></a>\n                                            We develop the relationships that underpin the next phase in your organisation’s&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">Digital Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme24\" title=\"theme24\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\"></a>\n                                            The development of your next business plan will be executed by a&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">Content Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-05\" title=\"theme-05\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\"></a>\n                                            What separates York agency from all other web design agencies is the&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">SEO Marketing</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">\n                                Read more\n                            </a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-600x486.jpg\" width=\"600\" height=\"486\" alt=\"theme-01\" title=\"theme-01\" />                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\"></a>\n                                            Graphic design is the process of visual and problem-solving using one or&hellip;                                        \n                                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">Chart management</a></h3>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">\n                                Read more\n                            </a>\n															<img width=\"630\" height=\"667\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about.png 630w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-about-283x300.png 283w\" sizes=\"(max-width: 630px) 100vw, 630px\" />															\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            We are Consultio, stablished Since\n<small>1999.</small>\n            </h3>\n		When creating Briones Business marketing Consulting, P.C., the attorney-client relationship was examined closely, keeping mind the question: how to provide quality legal services to clients without having the billable hour.		\n            <img width=\"56\" height=\"57\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon1.png\" alt=\"\" />        \n                    <h3>\n                Our Mission            </h3>\n                Business Law Consulting, P.C, is a new kind of law firm.  We are driven to be the best business law firm.\n            <img width=\"56\" height=\"54\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h9-icon2.png\" alt=\"\" />        \n                    <h3>\n                Our Value            </h3>\n                A client once told us that where others focus on one star one issue we see the whole sky. \n                        Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            All services which we have provided\n            </h3>\n		Definition of <b>Provide Services. Provide Services</b> means becoming employed by, working as a consultant or independent contractor for, or in any way rendering <b>services or assistance</b> to a person, business or other entity.		\n                                <img width=\"150\" height=\"148\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon1.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/social-media-marketing/\">Social Media Marketing</a></h3>\n                                    Social media marketing is the use of social media platforms to connect with your audience to build your brand, increase sales, and drive website traffic.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/social-media-marketing/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon2.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/search-engine-optimization/\">Search Engine Optimization</a></h3>\n                                    Looking for higher rankings and traffic through Search Engine Optimization? The Beginner\'s Guide to SEO has been read over 10 million times.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/search-engine-optimization/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon3.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development-2/\">Web Development</a></h3>\n                                    Front-end web developers are responsible for how a website looks. They create the site\'s layout and integrate graphics, applications.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development-2/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon4.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/ppc-advertising/\">PPC Advertising</a></h3>\n                                    At a minimum, marketing the PPP requires advertising the launch is an online advertising method that plays an audio advertisement on websites.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/ppc-advertising/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon5.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/apps-development/\">Apps Development</a></h3>\n                                    Build powerful, process-based applications to solve everyday business problems. Join 4 million+ users.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/apps-development/\"></a>\n                                <img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h9-service-icon6.png\" alt=\"\" />                            \n                                                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2-2/\">Content Marketing</a></h3>\n                                    Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined.                                \n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2-2/\"></a>\n        <a href=\"https://demo.casethemes.net/consultio-marketing/services-v-1/\" data-wow-delay=\"ms\">\n                View more\n    </a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            A case study focuses on a single event.\n            </h3>\n		A <b>case study</b> is an in-depth study of one person, group, or event. Much of Freud&#8217;s work and theories were developed through the use of individual <b>case studies.</b>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-12\" title=\"theme-12\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/sustainability/\" rel=\"tag\">Sustainability</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-200x200.jpg\" width=\"200\" height=\"200\" alt=\"h-case1\" title=\"h-case1\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/financial/\" rel=\"tag\">Financial</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/tax-management/\" rel=\"tag\">Tax Management</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-08\" title=\"theme-08\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/investing/\" rel=\"tag\">Investing</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/business/\" rel=\"tag\">Business</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h3>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\"></a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-200x200.jpg\" width=\"200\" height=\"200\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study-category/marketing/\" rel=\"tag\">Marketing</a>                            \n                            <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h3>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\"></a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Steps                                            \n	    <h3 data-wow-delay=\"ms\">\n            Take some easy steps for processing\n            </h3>\n		Welcome to the future of industrial work. Increase your access to qualified candidates. Make better-fit hires. Boost retention.		\n                        1\n                                                    <h3>Contact us first</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Contact us</a>\n                        2\n                                                    <h3>Consult with us</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Appoinment</a>\n                        3\n                                                    <h3>Place Order</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Order now</a>\n                        4\n                                                    <h3>Make Payment</h3>\n                                                    Lorem ipsum dolor sit amet, csectetur adipis icing.\n                        <a href=\"#\">Payment</a>\n                        Contact                                            \n	    <h3 data-wow-delay=\"ms\">\n            Want to do business with us?\n            </h3>\n		In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.		\n        <a href=\"https://demo.casethemes.net/consultio-marketing/contact/\" data-wow-delay=\"ms\">\n                Contact us\n    </a>\n                                            Our Value\n                                            Our Mission\n                                            Payroll Service\n                                            We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                                            Our professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                                            People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\n                        Fun facts                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have achieved great Funfacts.\n            </h3>\n                                1\n                k\n                            Happy <cite>Clients</cite>\n                                1\n                +\n                            Expert <cite>Team</cite>\n                                1\n                +\n                            Awards <cite>Winner</cite>\n                                1\n                +\n                            Positive <cite>Reviews</cite>\n                        Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We offer the best price for you!\n            </h3>\n		Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the business&#8217;s marketing plan.		\n                                                                                    Monthly        \n                                                                                    Yearly Save 20%        \n                                            <style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#000000;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}</style>		\n					        <section data-id=\"33a40038\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n        </section>\n                                            <style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#000000;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}</style>		\n					        <section data-id=\"7f5cbd63\" data-element_type=\"section\">\n    <h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>\n        </section>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','marketing-home','','inherit','closed','closed','','8505-revision-v1','','','2022-01-17 08:31:05','2022-01-17 08:31:05','',8505,'http://demoweblinks.in/ealoorconsultancy/?p=8507',0,'revision','',0),(8509,1,'2022-01-17 08:40:55','2022-01-17 08:40:55','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 08:40:55','2022-01-17 08:40:55','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8509',0,'revision','',0),(8510,1,'2022-01-17 08:40:58','2022-01-17 08:40:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-11.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Developing a program to be alleviate poverty.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/developing-a-program-to-be-alleviate-poverty/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 08:40:58','2022-01-17 08:40:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8510',0,'revision','',0),(8511,1,'2022-01-17 08:41:15','2022-01-17 08:41:15','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 08:41:15','2022-01-17 08:41:15','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8511',0,'revision','',0),(8512,1,'2022-02-09 13:27:22','2022-01-17 10:36:31','','HOME','','publish','closed','closed','','8512','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8512',1,'nav_menu_item','',0),(8514,1,'2022-02-09 13:27:22','2022-01-17 10:36:36','','STUDY ABROAD','','publish','closed','closed','','students','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8514',8,'nav_menu_item','',0),(8515,1,'2022-02-09 13:27:22','2022-01-17 10:36:38','','CLIENTS','','publish','closed','closed','','clients','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8515',10,'nav_menu_item','',0),(8516,1,'2022-02-09 13:27:23','2022-01-17 10:36:40','','GALLERY','','publish','closed','closed','','gallery-2','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8516',13,'nav_menu_item','',0),(8518,1,'2022-01-17 10:54:03','2022-01-17 10:54:03','','logo (11)','','inherit','open','closed','','logo-11','','','2022-01-17 10:54:03','2022-01-17 10:54:03','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png',0,'attachment','image/png',0),(8523,1,'2022-01-17 13:02:49','2022-01-17 13:02:49','','img1_1170x450_acf_cropped','','inherit','open','closed','','img1_1170x450_acf_cropped','','','2022-01-17 13:02:49','2022-01-17 13:02:49','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png',0,'attachment','image/png',0),(8524,1,'2022-01-17 13:04:23','2022-01-17 13:04:23','','slider4-1','','inherit','open','closed','','slider4-1','','','2022-01-17 13:04:23','2022-01-17 13:04:23','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg',0,'attachment','image/jpeg',0),(8525,1,'2022-01-17 13:46:38','2022-01-17 13:46:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:46:38','2022-01-17 13:46:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8525',0,'revision','',0),(8526,1,'2022-01-17 13:46:43','2022-01-17 13:46:43','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:46:43','2022-01-17 13:46:43','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8526',0,'revision','',0),(8527,1,'2022-01-17 13:46:51','2022-01-17 13:46:51','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:46:51','2022-01-17 13:46:51','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8527',0,'revision','',0),(8528,1,'2022-01-17 13:48:27','2022-01-17 13:48:27','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:48:27','2022-01-17 13:48:27','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8528',0,'revision','',0),(8529,1,'2022-01-17 13:48:30','2022-01-17 13:48:30','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:48:30','2022-01-17 13:48:30','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8529',0,'revision','',0),(8530,1,'2022-01-17 13:48:35','2022-01-17 13:48:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:48:35','2022-01-17 13:48:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8530',0,'revision','',0),(8531,1,'2022-01-17 13:50:29','2022-01-17 13:50:29','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:50:29','2022-01-17 13:50:29','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8531',0,'revision','',0),(8532,1,'2022-01-17 13:50:34','2022-01-17 13:50:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n                        	    		 <p>Please send your queries using the form below and we will get in touch with you.</p>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:50:34','2022-01-17 13:50:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8532',0,'revision','',0),(8533,1,'2022-01-17 13:50:39','2022-01-17 13:50:39','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:50:39','2022-01-17 13:50:39','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8533',0,'revision','',0),(8535,1,'2022-01-17 13:52:39','2022-01-17 13:52:39','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:52:39','2022-01-17 13:52:39','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8535',0,'revision','',0),(8536,1,'2022-01-17 13:52:42','2022-01-17 13:52:42','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:52:42','2022-01-17 13:52:42','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8536',0,'revision','',0),(8537,1,'2022-01-17 13:52:54','2022-01-17 13:52:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:52:54','2022-01-17 13:52:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8537',0,'revision','',0),(8538,1,'2022-01-17 13:54:13','2022-01-17 13:54:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:54:13','2022-01-17 13:54:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8538',0,'revision','',0),(8539,1,'2022-01-17 13:54:16','2022-01-17 13:54:16','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:54:16','2022-01-17 13:54:16','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8539',0,'revision','',0),(8540,1,'2022-01-17 13:54:22','2022-01-17 13:54:22','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-17 13:54:22','2022-01-17 13:54:22','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8540',0,'revision','',0),(8557,1,'2022-01-18 05:05:22','2022-01-18 05:05:22','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:05:22','2022-01-18 05:05:22','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8557',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8558,1,'2022-01-18 05:05:22','2022-01-18 05:05:22','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:05:22','2022-01-18 05:05:22','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8558',0,'revision','',0),(8559,1,'2022-01-18 05:05:22','2022-01-18 05:05:22','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:05:22','2022-01-18 05:05:22','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8559',0,'revision','',0),(8560,1,'2022-01-18 05:06:38','2022-01-18 05:06:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:06:38','2022-01-18 05:06:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8560',0,'revision','',0),(8561,1,'2022-01-18 05:06:38','2022-01-18 05:06:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:06:38','2022-01-18 05:06:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8561',0,'revision','',0),(8562,1,'2022-01-18 05:06:38','2022-01-18 05:06:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 05:06:38','2022-01-18 05:06:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8562',0,'revision','',0),(8564,1,'2022-01-18 06:29:26','2022-01-18 06:29:26','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"607\" height=\"160\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2021/03/logo-dark.png\" alt=\"\" />        </a>    		\n		Consultio has been optimized to give your visitors the best experience in terms of UX/UI, with a unique design to deliver all layouts.		\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n            </ul>\n	    <h3>\n                        Links                    \n            </h3>\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-64\"><a href=\"https://demo.casethemes.net/consultio-finance4/\">Home</a></li>\n<li id=\"menu-item-68\"><a href=\"https://demo.casethemes.net/consultio-finance4/about/\">About</a></li>\n<li id=\"menu-item-509\"><a href=\"https://demo.casethemes.net/consultio-finance4/services-v-1/\">Services</a></li>\n<li id=\"menu-item-513\"><a href=\"https://demo.casethemes.net/consultio-finance4/portfolio-grid/\">Projects</a></li>\n<li id=\"menu-item-512\"><a href=\"https://demo.casethemes.net/consultio-finance4/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-70\"><a href=\"https://demo.casethemes.net/consultio-finance4/contact/\">Contact</a></li>\n</ul>    \n	    <h3>\n                        Support                    \n            </h3>\n        <ul id=\"menu-menu-support\"><li id=\"menu-item-7073\"><a href=\"https://demo.casethemes.net/consultio-finance4/contact/\">Contact Us</a></li>\n<li id=\"menu-item-7074\"><a href=\"https://casethemes.ticksy.com/\">Submit a Ticket</a></li>\n<li id=\"menu-item-7075\"><a href=\"#\">Visit Knowledge Base</a></li>\n<li id=\"menu-item-7076\"><a href=\"https://casethemes.ticksy.com/\">Support System</a></li>\n<li id=\"menu-item-7077\"><a href=\"#\">Refund Policy</a></li>\n<li id=\"menu-item-7078\"><a href=\"#\">Professional Services</a></li>\n</ul>    \n	    <h3>\n                        Instagram                    \n            </h3>\n        <a href=\"https://www.instagram.com/p/CJ2X11IJhAV/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/137292331_1727550820758261_7239265777913590092_n.jpg?_nc_cat=106&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=y8j3oh1VtoAAX_qHk_2&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=e8d54bc68353014cb3b54c307a918ed6&#038;oe=6085F4CE\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137292331_1727550820758261_7239265777913590092_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=y8j3oh1VtoAAX_qHk_2&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=e8d54bc68353014cb3b54c307a918ed6&amp;oe=6085F4CE&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137292331_1727550820758261_7239265777913590092_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=y8j3oh1VtoAAX_qHk_2&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=e8d54bc68353014cb3b54c307a918ed6&amp;oe=6085F4CE&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137292331_1727550820758261_7239265777913590092_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=y8j3oh1VtoAAX_qHk_2&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=e8d54bc68353014cb3b54c307a918ed6&amp;oe=6085F4CE&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137292331_1727550820758261_7239265777913590092_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=y8j3oh1VtoAAX_qHk_2&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=e8d54bc68353014cb3b54c307a918ed6&amp;oe=6085F4CE&quot;}\">\n            Instagram post 17872210475142060\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17872210475142060\">\n        </a>\n        <a href=\"https://www.instagram.com/p/CJ2X0c_J_e6/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/136758754_682751692410498_3530460578845090546_n.jpg?_nc_cat=109&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=yUsNXVVCe3EAX9NKh7M&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=d16798429b9d8ee3e784d82192606ed6&#038;oe=608566B2\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136758754_682751692410498_3530460578845090546_n.jpg?_nc_cat=109&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yUsNXVVCe3EAX9NKh7M&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=d16798429b9d8ee3e784d82192606ed6&amp;oe=608566B2&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136758754_682751692410498_3530460578845090546_n.jpg?_nc_cat=109&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yUsNXVVCe3EAX9NKh7M&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=d16798429b9d8ee3e784d82192606ed6&amp;oe=608566B2&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136758754_682751692410498_3530460578845090546_n.jpg?_nc_cat=109&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yUsNXVVCe3EAX9NKh7M&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=d16798429b9d8ee3e784d82192606ed6&amp;oe=608566B2&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136758754_682751692410498_3530460578845090546_n.jpg?_nc_cat=109&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yUsNXVVCe3EAX9NKh7M&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=d16798429b9d8ee3e784d82192606ed6&amp;oe=608566B2&quot;}\">\n            Instagram post 17916592291554442\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17916592291554442\">\n        </a>\n        <a href=\"https://www.instagram.com/p/CJ2XzRcJKDi/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/137001646_859582164881124_9146380462924964806_n.jpg?_nc_cat=105&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=39TFutytamcAX9yiG8L&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=5b0c6ab94f28aaa019b989e15a04aa54&#038;oe=6087A8A6\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137001646_859582164881124_9146380462924964806_n.jpg?_nc_cat=105&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=39TFutytamcAX9yiG8L&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5b0c6ab94f28aaa019b989e15a04aa54&amp;oe=6087A8A6&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137001646_859582164881124_9146380462924964806_n.jpg?_nc_cat=105&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=39TFutytamcAX9yiG8L&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5b0c6ab94f28aaa019b989e15a04aa54&amp;oe=6087A8A6&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137001646_859582164881124_9146380462924964806_n.jpg?_nc_cat=105&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=39TFutytamcAX9yiG8L&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5b0c6ab94f28aaa019b989e15a04aa54&amp;oe=6087A8A6&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/137001646_859582164881124_9146380462924964806_n.jpg?_nc_cat=105&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=39TFutytamcAX9yiG8L&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5b0c6ab94f28aaa019b989e15a04aa54&amp;oe=6087A8A6&quot;}\">\n            Instagram post 18140678236140584\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18140678236140584\">\n        </a>\n        <a href=\"https://www.instagram.com/p/CJ2XyETJSWM/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/136981626_3701698933210959_8562398085920068454_n.jpg?_nc_cat=111&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=kha0b7l1BEgAX_zmGI6&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=bec1eaa2d77f99faa266c3cf14c897b9&#038;oe=6088618B\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136981626_3701698933210959_8562398085920068454_n.jpg?_nc_cat=111&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=kha0b7l1BEgAX_zmGI6&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=bec1eaa2d77f99faa266c3cf14c897b9&amp;oe=6088618B&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136981626_3701698933210959_8562398085920068454_n.jpg?_nc_cat=111&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=kha0b7l1BEgAX_zmGI6&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=bec1eaa2d77f99faa266c3cf14c897b9&amp;oe=6088618B&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136981626_3701698933210959_8562398085920068454_n.jpg?_nc_cat=111&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=kha0b7l1BEgAX_zmGI6&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=bec1eaa2d77f99faa266c3cf14c897b9&amp;oe=6088618B&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136981626_3701698933210959_8562398085920068454_n.jpg?_nc_cat=111&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=kha0b7l1BEgAX_zmGI6&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=bec1eaa2d77f99faa266c3cf14c897b9&amp;oe=6088618B&quot;}\">\n            Instagram post 18088464694227801\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18088464694227801\">\n        </a>\n        <a href=\"https://www.instagram.com/p/CJ2Xw3nJGay/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/136791048_233063091620742_1238241197292152760_n.jpg?_nc_cat=107&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=cYe5-qYGAQMAX85x5us&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=5087f2f60f23b3d9d04d9752952c99a9&#038;oe=60869F3D\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136791048_233063091620742_1238241197292152760_n.jpg?_nc_cat=107&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=cYe5-qYGAQMAX85x5us&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5087f2f60f23b3d9d04d9752952c99a9&amp;oe=60869F3D&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136791048_233063091620742_1238241197292152760_n.jpg?_nc_cat=107&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=cYe5-qYGAQMAX85x5us&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5087f2f60f23b3d9d04d9752952c99a9&amp;oe=60869F3D&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136791048_233063091620742_1238241197292152760_n.jpg?_nc_cat=107&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=cYe5-qYGAQMAX85x5us&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5087f2f60f23b3d9d04d9752952c99a9&amp;oe=60869F3D&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136791048_233063091620742_1238241197292152760_n.jpg?_nc_cat=107&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=cYe5-qYGAQMAX85x5us&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=5087f2f60f23b3d9d04d9752952c99a9&amp;oe=60869F3D&quot;}\">\n            Instagram post 17858163290388819\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17858163290388819\">\n        </a>\n        <a href=\"https://www.instagram.com/p/CJ2XuHtJCk9/\" target=\"_blank\" rel=\"noopener nofollow\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.29350-15/136430381_1294200707628732_9093995923163603707_n.jpg?_nc_cat=106&#038;ccb=1-3&#038;_nc_sid=8ae9d6&#038;_nc_ohc=xknlDZ4a7wMAX-fvFn_&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=751d8bb1f5712bc452d193f7147396eb&#038;oe=60854949\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136430381_1294200707628732_9093995923163603707_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=xknlDZ4a7wMAX-fvFn_&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=751d8bb1f5712bc452d193f7147396eb&amp;oe=60854949&quot;,&quot;150&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136430381_1294200707628732_9093995923163603707_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=xknlDZ4a7wMAX-fvFn_&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=751d8bb1f5712bc452d193f7147396eb&amp;oe=60854949&quot;,&quot;320&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136430381_1294200707628732_9093995923163603707_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=xknlDZ4a7wMAX-fvFn_&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=751d8bb1f5712bc452d193f7147396eb&amp;oe=60854949&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.29350-15/136430381_1294200707628732_9093995923163603707_n.jpg?_nc_cat=106&amp;ccb=1-3&amp;_nc_sid=8ae9d6&amp;_nc_ohc=xknlDZ4a7wMAX-fvFn_&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=751d8bb1f5712bc452d193f7147396eb&amp;oe=60854949&quot;}\">\n            Instagram post 17878436540080008\n            	                    <img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17878436540080008\">\n        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">Case-Themes</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:29:26','2022-01-18 06:29:26','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8564',0,'revision','',0),(8565,1,'2022-01-18 06:29:26','2022-01-18 06:29:26','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n            </ul>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Links\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-8218\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8043\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8393\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8219\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About</a></li>\n<li id=\"menu-item-8044\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About</a></li>\n<li id=\"menu-item-8394\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/team/\">Team</a></li>\n<li id=\"menu-item-8241\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8046\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8421\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8395\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/faq/\">FAQ</a></li>\n<li id=\"menu-item-8048\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Projects</a></li>\n<li id=\"menu-item-8243\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Projects</a></li>\n<li id=\"menu-item-8242\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8047\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8396\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About us</a></li>\n<li id=\"menu-item-8220\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8045\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8362\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-8422\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-8397\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8423\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8424\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n        <h3 data-wow-delay=\"ms\">\n            Support\n            </h3>\n        <ul id=\"menu-menu-support\"><li id=\"menu-item-8090\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact Us</a></li>\n<li id=\"menu-item-8024\"><a href=\"https://casethemes.ticksy.com/\">Submit a Ticket</a></li>\n<li id=\"menu-item-8025\"><a href=\"#\">Visit Knowledge Base</a></li>\n<li id=\"menu-item-8026\"><a href=\"https://casethemes.ticksy.com/\">Support System</a></li>\n<li id=\"menu-item-8027\"><a href=\"#\">Refund Policy</a></li>\n<li id=\"menu-item-8028\"><a href=\"#\">Professional Services</a></li>\n</ul>    \n        <h3 data-wow-delay=\"ms\">\n            Instagram\n            </h3>\n			This error message is only visible to WordPress admins<br />\n			<p><strong>Error: No connected account.</strong>\n			<p>Please go to the Instagram Feed settings page to connect an account.</p>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">Case-Themes</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:29:26','2022-01-18 06:29:26','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8565',0,'revision','',0),(8567,1,'2022-01-18 06:34:20','2022-01-18 06:34:20','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n            </ul>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n        <ul id=\"menu-menu-footer-links\"><li id=\"menu-item-8218\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8043\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8393\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-8219\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About</a></li>\n<li id=\"menu-item-8044\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About</a></li>\n<li id=\"menu-item-8394\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/team/\">Team</a></li>\n<li id=\"menu-item-8241\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8046\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8421\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/services-v-1/\">Services</a></li>\n<li id=\"menu-item-8395\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/faq/\">FAQ</a></li>\n<li id=\"menu-item-8048\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Projects</a></li>\n<li id=\"menu-item-8243\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Projects</a></li>\n<li id=\"menu-item-8242\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8047\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8396\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About us</a></li>\n<li id=\"menu-item-8220\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8045\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8362\"><a href=\"#\">Gallery</a></li>\n<li id=\"menu-item-8422\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials/\">Testimonials</a></li>\n<li id=\"menu-item-8397\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact</a></li>\n<li id=\"menu-item-8423\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/blog-grid-3-columns/\">News</a></li>\n<li id=\"menu-item-8424\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/portfolio-grid/\">Portfolio</a></li>\n</ul>    \n        <h3 data-wow-delay=\"ms\">\n            Support\n            </h3>\n        <ul id=\"menu-menu-support\"><li id=\"menu-item-8090\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact Us</a></li>\n<li id=\"menu-item-8024\"><a href=\"https://casethemes.ticksy.com/\">Submit a Ticket</a></li>\n<li id=\"menu-item-8025\"><a href=\"#\">Visit Knowledge Base</a></li>\n<li id=\"menu-item-8026\"><a href=\"https://casethemes.ticksy.com/\">Support System</a></li>\n<li id=\"menu-item-8027\"><a href=\"#\">Refund Policy</a></li>\n<li id=\"menu-item-8028\"><a href=\"#\">Professional Services</a></li>\n</ul>    \n        <h3 data-wow-delay=\"ms\">\n            Instagram\n            </h3>\n			This error message is only visible to WordPress admins<br />\n			<p><strong>Error: No connected account.</strong>\n			<p>Please go to the Instagram Feed settings page to connect an account.</p>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">Case-Themes</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:34:20','2022-01-18 06:34:20','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8567',0,'revision','',0),(8568,1,'2022-01-18 06:35:21','2022-01-18 06:35:21','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n        <h3 data-wow-delay=\"ms\">\n            Support\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n            </ul>\n        <ul id=\"menu-menu-support\"><li id=\"menu-item-8090\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact/\">Contact Us</a></li>\n<li id=\"menu-item-8024\"><a href=\"https://casethemes.ticksy.com/\">Submit a Ticket</a></li>\n<li id=\"menu-item-8025\"><a href=\"#\">Visit Knowledge Base</a></li>\n<li id=\"menu-item-8026\"><a href=\"https://casethemes.ticksy.com/\">Support System</a></li>\n<li id=\"menu-item-8027\"><a href=\"#\">Refund Policy</a></li>\n<li id=\"menu-item-8028\"><a href=\"#\">Professional Services</a></li>\n</ul>    \n        <h3 data-wow-delay=\"ms\">\n            Instagram\n            </h3>\n			This error message is only visible to WordPress admins<br />\n			<p><strong>Error: No connected account.</strong>\n			<p>Please go to the Instagram Feed settings page to connect an account.</p>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener\">Case-Themes</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:35:21','2022-01-18 06:35:21','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8568',0,'revision','',0),(8569,1,'2022-01-18 06:38:48','2022-01-18 06:38:48','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Instagram\n            </h3>\n			This error message is only visible to WordPress admins<br />\n			<p><strong>Error: No connected account.</strong>\n			<p>Please go to the Instagram Feed settings page to connect an account.</p>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:38:48','2022-01-18 06:38:48','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8569',0,'revision','',0),(8570,1,'2022-01-18 06:39:24','2022-01-18 06:39:24','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n			This error message is only visible to WordPress admins<br />\n			<p><strong>Error: No connected account.</strong>\n			<p>Please go to the Instagram Feed settings page to connect an account.</p>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:39:24','2022-01-18 06:39:24','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8570',0,'revision','',0),(8571,1,'2022-01-18 06:40:29','2022-01-18 06:40:29','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:40:29','2022-01-18 06:40:29','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8571',0,'revision','',0),(8572,1,'2022-01-18 06:41:17','2022-01-18 06:41:17','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 06:41:17','2022-01-18 06:41:17','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8572',0,'revision','',0),(8573,1,'2022-01-18 06:44:24','2022-01-18 06:44:24','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:44:24','2022-01-18 06:44:24','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8573',0,'revision','',0),(8574,1,'2022-01-18 06:44:24','2022-01-18 06:44:24','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:44:24','2022-01-18 06:44:24','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8574',0,'revision','',0),(8575,1,'2022-01-18 06:44:25','2022-01-18 06:44:25','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img width=\"800\" height=\"600\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img width=\"900\" height=\"900\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:44:25','2022-01-18 06:44:25','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8575',0,'revision','',0),(8577,1,'2022-01-18 06:53:06','2022-01-18 06:53:06','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img width=\"800\" height=\"600\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img width=\"900\" height=\"900\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:53:06','2022-01-18 06:53:06','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8577',0,'revision','',0),(8578,1,'2022-01-18 06:53:06','2022-01-18 06:53:06','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img width=\"800\" height=\"600\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img width=\"900\" height=\"900\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img width=\"1920\" height=\"1200\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img width=\"1200\" height=\"800\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg\" alt=\"\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:53:06','2022-01-18 06:53:06','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8578',0,'revision','',0),(8579,1,'2022-01-18 06:53:06','2022-01-18 06:53:06','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:53:06','2022-01-18 06:53:06','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8579',0,'revision','',0),(8580,1,'2022-01-18 06:54:50','2022-01-18 06:54:50','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:54:50','2022-01-18 06:54:50','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8580',0,'revision','',0),(8581,1,'2022-01-18 06:54:50','2022-01-18 06:54:50','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:54:50','2022-01-18 06:54:50','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8581',0,'revision','',0),(8582,1,'2022-01-18 06:54:51','2022-01-18 06:54:51','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:54:51','2022-01-18 06:54:51','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8582',0,'revision','',0),(8583,1,'2022-01-18 06:55:33','2022-01-18 06:55:33','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:55:33','2022-01-18 06:55:33','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8583',0,'revision','',0),(8584,1,'2022-01-18 06:55:34','2022-01-18 06:55:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:55:34','2022-01-18 06:55:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8584',0,'revision','',0),(8585,1,'2022-01-18 06:55:34','2022-01-18 06:55:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:55:34','2022-01-18 06:55:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8585',0,'revision','',0),(8586,1,'2022-01-18 06:56:13','2022-01-18 06:56:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:13','2022-01-18 06:56:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8586',0,'revision','',0),(8587,1,'2022-01-18 06:56:13','2022-01-18 06:56:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:13','2022-01-18 06:56:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8587',0,'revision','',0),(8588,1,'2022-01-18 06:56:13','2022-01-18 06:56:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:13','2022-01-18 06:56:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8588',0,'revision','',0),(8589,1,'2022-01-18 06:56:35','2022-01-18 06:56:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:35','2022-01-18 06:56:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8589',0,'revision','',0),(8590,1,'2022-01-18 06:56:35','2022-01-18 06:56:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:35','2022-01-18 06:56:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8590',0,'revision','',0),(8591,1,'2022-01-18 06:56:35','2022-01-18 06:56:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 06:56:35','2022-01-18 06:56:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8591',0,'revision','',0),(8592,1,'2022-01-18 08:07:53','2022-01-18 08:07:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:07:53','2022-01-18 08:07:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8592',0,'revision','',0),(8593,1,'2022-01-18 08:07:53','2022-01-18 08:07:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:07:53','2022-01-18 08:07:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8593',0,'revision','',0),(8594,1,'2022-01-18 08:07:53','2022-01-18 08:07:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:07:53','2022-01-18 08:07:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8594',0,'revision','',0),(8595,1,'2022-01-18 08:08:48','2022-01-18 08:08:48','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:08:48','2022-01-18 08:08:48','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8595',0,'revision','',0),(8596,1,'2022-01-18 08:08:48','2022-01-18 08:08:48','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:08:48','2022-01-18 08:08:48','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8596',0,'revision','',0),(8597,1,'2022-01-18 08:08:48','2022-01-18 08:08:48','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 08:08:48','2022-01-18 08:08:48','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8597',0,'revision','',0),(8598,1,'2022-01-18 08:15:50','2022-01-18 08:15:50','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@envato.com                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 08:15:50','2022-01-18 08:15:50','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8598',0,'revision','',0),(8599,1,'2022-01-18 08:17:32','2022-01-18 08:17:32','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 08:17:32','2022-01-18 08:17:32','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8599',0,'revision','',0),(8602,1,'2022-01-18 09:54:40','2022-01-18 09:54:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:54:40','2022-01-18 09:54:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8602',0,'revision','',0),(8603,1,'2022-01-18 09:54:40','2022-01-18 09:54:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:54:40','2022-01-18 09:54:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8603',0,'revision','',0),(8604,1,'2022-01-18 09:54:40','2022-01-18 09:54:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:54:40','2022-01-18 09:54:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8604',0,'revision','',0),(8605,1,'2022-01-18 09:55:10','2022-01-18 09:55:10','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:55:10','2022-01-18 09:55:10','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8605',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8606,1,'2022-01-18 09:55:10','2022-01-18 09:55:10','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:55:10','2022-01-18 09:55:10','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8606',0,'revision','',0),(8607,1,'2022-01-18 09:55:11','2022-01-18 09:55:11','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:55:11','2022-01-18 09:55:11','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8607',0,'revision','',0),(8608,1,'2022-01-18 09:56:44','2022-01-18 09:56:44','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:56:44','2022-01-18 09:56:44','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8608',0,'revision','',0),(8609,1,'2022-01-18 09:56:44','2022-01-18 09:56:44','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:56:44','2022-01-18 09:56:44','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8609',0,'revision','',0),(8610,1,'2022-01-18 09:56:45','2022-01-18 09:56:45','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:56:45','2022-01-18 09:56:45','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8610',0,'revision','',0),(8611,1,'2022-01-18 09:58:40','2022-01-18 09:58:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:58:40','2022-01-18 09:58:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8611',0,'revision','',0),(8612,1,'2022-01-18 09:58:40','2022-01-18 09:58:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:58:40','2022-01-18 09:58:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8612',0,'revision','',0),(8613,1,'2022-01-18 09:58:40','2022-01-18 09:58:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-18 09:58:40','2022-01-18 09:58:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8613',0,'revision','',0),(8615,1,'2022-01-18 11:12:51','2022-01-18 11:12:51','<h3><i></i>\nWe’re a global stakeholder relations and partnership building consultancy.</h3>\nCollaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.We bring more than 24 years’ senior experience forging of\ncollaborations across government.\nPraesent feugiat sem mattis.\nA wonderful serenity.\nPremium services for you.\nSet a link back to photo.\nCall to ask <a href=\"#\">any question</a> 540-325-1523\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap.png\" sizes=\"(max-width: 350px) 100vw, 350px\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" alt=\"\" width=\"350\" height=\"1\" />\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/signature.png\" alt=\"\" width=\"95\" height=\"85\" />\n<h3>Natalia Duke</h3>\n(Chairman and founder)\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png\" sizes=\"(max-width: 558px) 100vw, 558px\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1-265x300.png 265w\" alt=\"\" width=\"558\" height=\"631\" />\nWant to know more about us?\nJust download brochure...\n<a href=\"#\">\nDownload Brochure </a>\n<h3><i></i>\nWe position our clients at the forefront of their field by advanced services.</h3>\nWe bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.\n<img title=\"update-service-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-01-450x450.jpg\" alt=\"update-service-01\" width=\"450\" height=\"450\" />\n<h3>Social Media Marketing</h3>\n<h3>Social Media Marketing</h3>\nWe understand the importance of approaching each work integrally and…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/social-media-marketing/\">\nRead more </a>\n<img title=\"update-service-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-450x450.jpg\" alt=\"update-service-02\" width=\"450\" height=\"450\" />\n<h3>Content Marketing</h3>\n<h3>Content Marketing</h3>\nYour logo is the very heart of your identity, let…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\">\nRead more </a>\n<img title=\"update-blog3\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-450x450.jpg\" alt=\"update-blog3\" width=\"450\" height=\"450\" />\n<h3>SEO Optimization</h3>\n<h3>SEO Optimization</h3>\nWhat separates mori from all other web design agencies is…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\">\nRead more </a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-450x450.jpg\" alt=\"theme-05\" width=\"450\" height=\"450\" />\n<h3>Web Development</h3>\n<h3>Web Development</h3>\nIncrease social reach and productivity with our App Directory, a…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\">\nRead more </a>\n<h3><i></i>\nConsultio is a professional consulting company</h3>\nAt vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\nStart\n<h3>2nd Feb, 2018</h3>\nExhibition Planning &amp; Exhibition Management\n<h3>21st Jul, 2018</h3>\nGrowth internationallyfirst half of the 2018s\n<h3>19th Aug, 2018</h3>\nThe purpose of the business plan\n<h3>2nd Jan, 2019</h3>\nFocus business history on what matters to planning\n<h3>22nd Sep, 2019</h3>\nHistory to Unite and Inspire People\n<h3>12th Jan, 2018</h3>\nEstablishment of Constrio\n<h3>8th Jul, 2018</h3>\nRegistered as a construction company\n<h3>18th Aug, 2018</h3>\nConstruction bought the Greek company Delta\n<h3>27th Sep, 2018</h3>\nFor lean business plans, operational plans, and strategic plans\n<h3>8th Jul, 2019</h3>\nAward winner\n<img title=\"theme-15\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/theme-15-150x150.jpg\" alt=\"theme-15\" width=\"150\" height=\"150\" />\n<h3><i></i>\nWe have many reviews from our satisfied clients.</h3>\n<i>”</i>\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\nWe also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n<h3>Kathleen Smith</h3>\nSenior Director\n<i>”</i>\n<img title=\"testimonial-08\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-08.jpg\" alt=\"testimonial-08\" width=\"130\" height=\"130\" />\nI love that moment when we find the connections between organisations and envisage the initiative or platform.\n<h3>Van Hunter</h3>\nSenior Director\n<i>”</i>\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\nHe was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n<h3>Macquarie Telecom</h3>\nLeadership Group\n<i>”</i>\n<img title=\"testimonial-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06.jpg\" alt=\"testimonial-06\" width=\"109\" height=\"109\" />\nWe also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n<h3>Fred L Smith</h3>\nSenior Director\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /> </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:12:51','2022-01-18 11:12:51','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8615',0,'revision','',0),(8616,1,'2022-01-18 11:12:51','2022-01-18 11:12:51','<h3><i></i>\nWe’re a global stakeholder relations and partnership building consultancy.</h3>\nCollaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.We bring more than 24 years’ senior experience forging of\ncollaborations across government.\nPraesent feugiat sem mattis.\nA wonderful serenity.\nPremium services for you.\nSet a link back to photo.\nCall to ask <a href=\"#\">any question</a> 540-325-1523\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap.png\" sizes=\"(max-width: 350px) 100vw, 350px\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" alt=\"\" width=\"350\" height=\"1\" />\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/signature.png\" alt=\"\" width=\"95\" height=\"85\" />\n<h3>Natalia Duke</h3>\n(Chairman and founder)\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png\" sizes=\"(max-width: 558px) 100vw, 558px\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/about1-265x300.png 265w\" alt=\"\" width=\"558\" height=\"631\" />\nWant to know more about us?\nJust download brochure...\n<a href=\"#\">\nDownload Brochure </a>\n<h3><i></i>\nWe position our clients at the forefront of their field by advanced services.</h3>\nWe bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.\n<img title=\"update-service-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-01-450x450.jpg\" alt=\"update-service-01\" width=\"450\" height=\"450\" />\n<h3>Social Media Marketing</h3>\n<h3>Social Media Marketing</h3>\nWe understand the importance of approaching each work integrally and…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/social-media-marketing/\">\nRead more </a>\n<img title=\"update-service-02\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/03/update-service-02-450x450.jpg\" alt=\"update-service-02\" width=\"450\" height=\"450\" />\n<h3>Content Marketing</h3>\n<h3>Content Marketing</h3>\nYour logo is the very heart of your identity, let…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/content-marketing/\">\nRead more </a>\n<img title=\"update-blog3\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/update-blog3-450x450.jpg\" alt=\"update-blog3\" width=\"450\" height=\"450\" />\n<h3>SEO Optimization</h3>\n<h3>SEO Optimization</h3>\nWhat separates mori from all other web design agencies is…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/seo-optimization-2/\">\nRead more </a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/theme-05-450x450.jpg\" alt=\"theme-05\" width=\"450\" height=\"450\" />\n<h3>Web Development</h3>\n<h3>Web Development</h3>\nIncrease social reach and productivity with our App Directory, a…\n<a href=\"https://demo.casethemes.net/consultio-finance4/service/web-development/\">\nRead more </a>\n<h3><i></i>\nConsultio is a professional consulting company</h3>\nAt vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\nStart\n<h3>2nd Feb, 2018</h3>\nExhibition Planning &amp; Exhibition Management\n<h3>21st Jul, 2018</h3>\nGrowth internationallyfirst half of the 2018s\n<h3>19th Aug, 2018</h3>\nThe purpose of the business plan\n<h3>2nd Jan, 2019</h3>\nFocus business history on what matters to planning\n<h3>22nd Sep, 2019</h3>\nHistory to Unite and Inspire People\n<h3>12th Jan, 2018</h3>\nEstablishment of Constrio\n<h3>8th Jul, 2018</h3>\nRegistered as a construction company\n<h3>18th Aug, 2018</h3>\nConstruction bought the Greek company Delta\n<h3>27th Sep, 2018</h3>\nFor lean business plans, operational plans, and strategic plans\n<h3>8th Jul, 2019</h3>\nAward winner\n<img title=\"theme-15\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/theme-15-150x150.jpg\" alt=\"theme-15\" width=\"150\" height=\"150\" />\n<h3><i></i>\nWe have many reviews from our satisfied clients.</h3>\n<i>”</i>\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\nWe also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n<h3>Kathleen Smith</h3>\nSenior Director\n<i>”</i>\n<img title=\"testimonial-08\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-08.jpg\" alt=\"testimonial-08\" width=\"130\" height=\"130\" />\nI love that moment when we find the connections between organisations and envisage the initiative or platform.\n<h3>Van Hunter</h3>\nSenior Director\n<i>”</i>\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\nHe was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n<h3>Macquarie Telecom</h3>\nLeadership Group\n<i>”</i>\n<img title=\"testimonial-06\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-06.jpg\" alt=\"testimonial-06\" width=\"109\" height=\"109\" />\nWe also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n<h3>Fred L Smith</h3>\nSenior Director\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /> </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:12:51','2022-01-18 11:12:51','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8616',0,'revision','',0),(8617,1,'2022-01-18 11:12:51','2022-01-18 11:12:51','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We position our clients at the forefront of their field by advanced services.\n            </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Digital Marketing</h3>\n                                                We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">Digital Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme24\" title=\"theme24\" />                                \n                                                                                                                            <h3>Content Marketing</h3>\n                                                The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">Content Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                            <h3>SEO Marketing</h3>\n                                                What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">SEO Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Chart management</h3>\n                                                Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">Chart management</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                            <h3>SEO Optimization</h3>\n                                                A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">SEO Optimization</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                            <h3>Market Research</h3>\n                                                Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">Market Research</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">+</a>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:12:51','2022-01-18 11:12:51','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8617',0,'revision','',0),(8619,1,'2022-01-18 11:18:47','2022-01-18 11:18:47','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We position our clients at the forefront of their field by advanced services.\n            </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Digital Marketing</h3>\n                                                We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">Digital Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme24\" title=\"theme24\" />                                \n                                                                                                                            <h3>Content Marketing</h3>\n                                                The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">Content Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                            <h3>SEO Marketing</h3>\n                                                What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">SEO Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Chart management</h3>\n                                                Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">Chart management</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                            <h3>SEO Optimization</h3>\n                                                A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">SEO Optimization</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                            <h3>Market Research</h3>\n                                                Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">Market Research</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">+</a>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:18:47','2022-01-18 11:18:47','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8619',0,'revision','',0),(8620,1,'2022-01-18 11:18:47','2022-01-18 11:18:47','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We position our clients at the forefront of their field by advanced services.\n            </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Digital Marketing</h3>\n                                                We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">Digital Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/digital-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme24-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme24\" title=\"theme24\" />                                \n                                                                                                                            <h3>Content Marketing</h3>\n                                                The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">Content Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing-2/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                            <h3>SEO Marketing</h3>\n                                                What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">SEO Marketing</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-marketing/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                            <h3>Chart management</h3>\n                                                Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">Chart management</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/chart-management/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                            <h3>SEO Optimization</h3>\n                                                A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">SEO Optimization</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-3/\">+</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                            <h3>Market Research</h3>\n                                                Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                            \n                                                                            <h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">Market Research</a>\n                                                                                    </h3>\n                                                                                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/market-research/\">+</a>\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:18:47','2022-01-18 11:18:47','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8620',0,'revision','',0),(8621,1,'2022-01-18 11:18:48','2022-01-18 11:18:48','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:18:48','2022-01-18 11:18:48','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8621',0,'revision','',0),(8623,1,'2022-01-18 11:34:51','2022-01-18 11:34:51','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:34:51','2022-01-18 11:34:51','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8623',0,'revision','',0),(8624,1,'2022-01-18 11:34:51','2022-01-18 11:34:51','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            Consultio is a professional consulting company\n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            We have many reviews from our satisfied clients.\n            </h3>\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:34:51','2022-01-18 11:34:51','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8624',0,'revision','',0),(8625,1,'2022-01-18 11:34:52','2022-01-18 11:34:52','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:34:52','2022-01-18 11:34:52','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8625',0,'revision','',0),(8627,1,'2022-01-18 11:50:16','2022-01-18 11:50:16','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:16','2022-01-18 11:50:16','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8627',0,'revision','',0),(8628,1,'2022-01-18 11:50:16','2022-01-18 11:50:16','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:16','2022-01-18 11:50:16','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8628',0,'revision','',0),(8629,1,'2022-01-18 11:50:16','2022-01-18 11:50:16','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:16','2022-01-18 11:50:16','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8629',0,'revision','',0),(8630,1,'2022-01-18 11:50:33','2022-01-18 11:50:33','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:33','2022-01-18 11:50:33','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8630',0,'revision','',0),(8631,1,'2022-01-18 11:50:33','2022-01-18 11:50:33','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:33','2022-01-18 11:50:33','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8631',0,'revision','',0),(8632,1,'2022-01-18 11:50:33','2022-01-18 11:50:33','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:50:33','2022-01-18 11:50:33','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8632',0,'revision','',0),(8633,1,'2022-01-18 11:51:27','2022-01-18 11:51:27','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:51:27','2022-01-18 11:51:27','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8633',0,'revision','',0),(8634,1,'2022-01-18 11:51:27','2022-01-18 11:51:27','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:51:27','2022-01-18 11:51:27','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8634',0,'revision','',0),(8635,1,'2022-01-18 11:51:27','2022-01-18 11:51:27','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 11:51:27','2022-01-18 11:51:27','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8635',0,'revision','',0),(8636,1,'2022-02-09 13:27:22','2022-01-18 11:53:03','','ABOUT US','','publish','closed','closed','','about-us-11','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8636',2,'nav_menu_item','',0),(8637,1,'2022-01-18 12:00:45','2022-01-18 12:00:45','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 12:00:45','2022-01-18 12:00:45','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8637',0,'revision','',0),(8638,1,'2022-01-18 12:59:13','2022-01-18 12:59:13','','info-april','','inherit','','closed','','info-april','','','2022-01-18 12:59:13','2022-01-18 12:59:13','',8379,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png',0,'attachment','image/png',0),(8639,1,'2022-01-18 13:00:49','2022-01-18 13:00:49','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:00:49','2022-01-18 13:00:49','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8639',0,'revision','',0),(8640,1,'2022-01-18 13:00:49','2022-01-18 13:00:49','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:00:49','2022-01-18 13:00:49','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8640',0,'revision','',0),(8641,1,'2022-01-18 13:00:49','2022-01-18 13:00:49','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3>Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3>A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:00:49','2022-01-18 13:00:49','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8641',0,'revision','',0),(8642,1,'2022-01-18 13:02:40','2022-01-18 13:02:40','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3>Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3>A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:02:40','2022-01-18 13:02:40','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8642',0,'revision','',0),(8643,1,'2022-01-18 13:02:40','2022-01-18 13:02:40','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3>Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n[gallery size=\"constrio-medium\" columns=\"2\" link=\"file\" ids=\"149,184\"]\n<h3>A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:02:40','2022-01-18 13:02:40','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8643',0,'revision','',0),(8644,1,'2022-01-18 13:02:40','2022-01-18 13:02:40','<p><a href=\"https://ealoorconsultancy.co.uk/news-events/gloucester-hospitals-nhs-foundations-trust-direct-interview/\">Gloucester Hospitals NHS Foundations Trust – Direct Interview</a></p>\n<p></p>\n<h2>Benefits of Package</h2>\n<ul><li>Starting Salary £24,214 per annum</li>\n<li>One way flight to the UK</li>\n<li>One month Free Accommodation</li>\n<li>Free Certificate Of Sponsorship</li>\n<li>Free 1 x OSCE exam cost</li>\n<li>Refund the Medical Exams / TB Screening</li>\n<li>Refund Visa Application</li>\n<li>Refund the Immigration Health Surcharge</li>\n<li>Refund the CBT exam cost</li>\n<li>Refund of NMC Application Fee</li></ul>\n<h3>Who Can Apply?</h3>\n<ul>\n<li>Theatre and Surgery Nurses with NMC Decision letter.</li>\n<li>Theatre and Surgery Nurses: New assessment completed candidates.</li>\n<li>Candidates ready to travel on April 2020</li>\n<li>Immediate COS for interview successful candidates.</li>\n</ul>		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:02:40','2022-01-18 13:02:40','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8644',0,'revision','',0),(8647,1,'2022-01-18 13:06:04','2022-01-18 13:06:04','<a href=\"https://ealoorconsultancy.co.uk/news-events/gloucester-hospitals-nhs-foundations-trust-direct-interview/\">Gloucester Hospitals NHS Foundations Trust – Direct Interview</a>\n<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>One way flight to the UK</li>\n 	<li>One month Free Accommodation</li>\n 	<li>Free Certificate Of Sponsorship</li>\n 	<li>Free 1 x OSCE exam cost</li>\n 	<li>Refund the Medical Exams / TB Screening</li>\n 	<li>Refund Visa Application</li>\n 	<li>Refund the Immigration Health Surcharge</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Theatre and Surgery Nurses with NMC Decision letter.</li>\n 	<li>Theatre and Surgery Nurses: New assessment completed candidates.</li>\n 	<li>Candidates ready to travel on April 2020</li>\n 	<li>Immediate COS for interview successful candidates.</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Strategy for Norway\'s Peion to Fund Global.','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8379-revision-v1','','','2022-01-18 13:06:04','2022-01-18 13:06:04','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8647',0,'revision','',0),(8648,1,'2022-01-18 13:11:41','2022-01-18 13:11:41','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 13:11:41','2022-01-18 13:11:41','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8648',0,'revision','',0),(8649,1,'2022-01-18 13:11:41','2022-01-18 13:11:41','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 13:11:41','2022-01-18 13:11:41','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8649',0,'revision','',0),(8650,1,'2022-01-18 13:11:41','2022-01-18 13:11:41','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 13:11:41','2022-01-18 13:11:41','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8650',0,'revision','',0),(8651,1,'2022-01-18 13:13:05','2022-01-18 13:13:05','<h3 data-wow-delay=\"ms\">\n                            <i></i>\nAbout Us</h3>\nEaloor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.\n\nHaving multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\">\nAwarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\nBritish Council Approved Agent\nBest International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\nREC Membership\nIn 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n<h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a></h4>\n<h3>\n                            OSCE TRAINING</h3>\n<ul>\n 	<li>Started the first-ever private OSCE training for nurses</li>\n 	<li>Training conducted for NHS Hospitals</li>\n 	<li>Over 100 batch of training completed</li>\n 	<li>Batch and one to one session conducted every month</li>\n 	<li>99% pass rate for all our students</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n<h3>\n                            CBT TRAINING</h3>\n<ul>\n 	<li>Over 2500 questions and answers available</li>\n 	<li>5 days of completely free training trial</li>\n 	<li>Mock tests available</li>\n 	<li>Most widely used among international nurses</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n<h3>\n                            NMC SUPPORT</h3>\n<ul>\n 	<li>Revalidation Assistance</li>\n 	<li>Overseas NMC Registration Assistance</li>\n</ul>\n<h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n<i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nIn the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n<h3 data-wow-delay=\"ms\">\n                            <i></i>\nWHOM WE RECRUIT?</h3>\nStrictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:\n\nRegistered General Nurses\nMental Health Nurses\nPaediatrics Nurses\nCommunity Nurses\nHealth Visitors\nAllied Health Professionals\nEmergency Nurse Practitioners\nParamedics\nGP’s\nRadiographers\nOUR CLIENTS\n<h3 data-wow-delay=\"ms\"></h3>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-18 13:13:05','2022-01-18 13:13:05','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8651',0,'revision','',0),(8652,1,'2022-01-18 13:21:44','2022-01-18 13:21:44','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"slider4-1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"img1_1170x450_acf_cropped\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"u-blog-02\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-bg-section4\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider3\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-banner1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2-150x150.jpg\" alt=\"\" /></a>\n			</figure>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-18 13:21:44','2022-01-18 13:21:44','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8652',0,'revision','',0),(8653,1,'2022-01-19 06:14:47','2022-01-19 06:14:47','Contact us                                \n	    <h3>\n                        If need any info please contact <b>us!</b>                    \n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n										<img width=\"538\" height=\"368\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4.png 538w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />											\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/csuti-digital-marketing/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.3.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n				<h3>\n					Our office address:\n				</h3>\n								<p>3556 Hartford Way Vlg, Mount of\nPleasant, SC, 29466, Australia.</p>\n				<h3>\n					Mail us:\n				</h3>\n								<p>noreply@envato.com<br/>\nnoreply@company.com</p>\n				<h3>\n					Call for help:\n				</h3>\n								<p>(734) 697-2907<br/>\n(843) 971-1906</p>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:14:47','2022-01-19 06:14:47','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8653',0,'revision','',0),(8654,1,'2022-01-19 06:14:47','2022-01-19 06:14:47','Contact us                                \n	    <h3>\n                        If need any info please contact <b>us!</b>                    \n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n										<img width=\"538\" height=\"368\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4.png 538w, https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />											\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ctthemes/csuti-digital-marketing/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.3.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n				<h3>\n					Our office address:\n				</h3>\n								<p>3556 Hartford Way Vlg, Mount of\nPleasant, SC, 29466, Australia.</p>\n				<h3>\n					Mail us:\n				</h3>\n								<p>noreply@envato.com<br/>\nnoreply@company.com</p>\n				<h3>\n					Call for help:\n				</h3>\n								<p>(734) 697-2907<br/>\n(843) 971-1906</p>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:14:47','2022-01-19 06:14:47','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8654',0,'revision','',0),(8655,1,'2022-01-19 06:14:47','2022-01-19 06:14:47','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:14:47','2022-01-19 06:14:47','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8655',0,'revision','',0),(8656,1,'2022-01-19 06:16:03','2022-01-19 06:16:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:16:03','2022-01-19 06:16:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8656',0,'revision','',0),(8657,1,'2022-01-19 06:16:03','2022-01-19 06:16:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:16:03','2022-01-19 06:16:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8657',0,'revision','',0),(8658,1,'2022-01-19 06:16:03','2022-01-19 06:16:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:16:03','2022-01-19 06:16:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8658',0,'revision','',0),(8660,1,'2022-01-19 06:25:03','2022-01-19 06:25:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:03','2022-01-19 06:25:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8660',0,'revision','',0),(8661,1,'2022-01-19 06:25:03','2022-01-19 06:25:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h5>\n						EALOOR CONSULTANCY UK LTD.					\n				</h5>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h5>\n						Mail us:					\n				</h5>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h5>\n						Call for help:					\n				</h5>\n									<p>\n						+44 161 456 7166					</p>\n				<h5>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h5>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h3>\n						Mail us:					\n				</h3>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h3>\n						Call for help:					\n				</h3>\n									<p>\n						Tel No: 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:03','2022-01-19 06:25:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8661',0,'revision','',0),(8662,1,'2022-01-19 06:25:03','2022-01-19 06:25:03','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:03','2022-01-19 06:25:03','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8662',0,'revision','',0),(8663,1,'2022-01-19 06:25:42','2022-01-19 06:25:42','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:42','2022-01-19 06:25:42','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8663',0,'revision','',0),(8664,1,'2022-01-19 06:25:42','2022-01-19 06:25:42','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:42','2022-01-19 06:25:42','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8664',0,'revision','',0),(8665,1,'2022-01-19 06:25:43','2022-01-19 06:25:43','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:25:43','2022-01-19 06:25:43','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8665',0,'revision','',0),(8667,1,'2022-01-19 06:37:16','2022-01-19 06:37:16','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:37:16','2022-01-19 06:37:16','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8667',0,'revision','',0),(8668,1,'2022-01-19 06:37:16','2022-01-19 06:37:16','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"3851\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f3851-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:37:16','2022-01-19 06:37:16','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8668',0,'revision','',0),(8669,1,'2022-01-19 06:37:16','2022-01-19 06:37:16','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:37:16','2022-01-19 06:37:16','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8669',0,'revision','',0),(8671,1,'2022-01-19 06:38:40','2022-01-19 06:38:40','Contact us\n<h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b></h3>\nWe’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\">\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>\n<h6>\n						EALOOR CONSULTANCY UK LTD.</h6>\nEaloor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\n<h6>\n						Mail us:</h6>\ninfo@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel:+44 161 456 7166\n<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY</h6>\nCarnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel : 0484 4017565\nMob No: +91 9995399366/ +91 9995205566\nWhatsApp: +91 9995377366\nUK Land Line: +44 161 456 7166\n<h6>\n						EALOOR CONSULTANCY &amp; ACADAMY</h6>\nNagampadam Kottayam - 686006 Kerala India\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel: 91-481-2581566\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 06:38:40','2022-01-19 06:38:40','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8671',0,'revision','',0),(8672,1,'2022-02-09 13:27:23','2022-01-19 06:40:59','','CONTACT US','','publish','closed','closed','','contact-us-6','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8672',16,'nav_menu_item','',0),(8677,1,'2022-01-19 07:25:46','2022-01-19 07:25:46','','Study Abroad UK','','publish','closed','closed','','study-abroad-uk','','','2022-02-03 13:46:34','2022-02-03 13:46:34','',0,'http://demoweblinks.in/ealoorconsultancy/?post_type=case-study&#038;p=8677',0,'case-study','',0),(8678,1,'2022-01-19 07:25:46','2022-01-19 07:25:46','','EALOOR STUDY ABROAD','','inherit','closed','closed','','8677-revision-v1','','','2022-01-19 07:25:46','2022-01-19 07:25:46','',8677,'http://demoweblinks.in/ealoorconsultancy/?p=8678',0,'revision','',0),(8679,1,'2022-01-19 07:27:28','2022-01-19 07:27:28','','Nursing Jobs uk','','publish','closed','closed','','nursing-jobs-uk','','','2022-02-24 11:06:22','2022-02-24 11:06:22','',0,'http://demoweblinks.in/ealoorconsultancy/?post_type=case-study&#038;p=8679',0,'case-study','',0),(8680,1,'2022-01-19 07:27:04','2022-01-19 07:27:04','','logo (12)','','inherit','','closed','','logo-12','','','2022-01-19 07:27:04','2022-01-19 07:27:04','',8679,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png',0,'attachment','image/png',0),(8681,1,'2022-01-19 07:27:28','2022-01-19 07:27:28','','NURSING JOBS UK','','inherit','closed','closed','','8679-revision-v1','','','2022-01-19 07:27:28','2022-01-19 07:27:28','',8679,'http://demoweblinks.in/ealoorconsultancy/?p=8681',0,'revision','',0),(8682,1,'2022-01-19 07:28:29','2022-01-19 07:28:29','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:28:29','2022-01-19 07:28:29','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8682',0,'revision','',0),(8683,1,'2022-01-19 07:28:29','2022-01-19 07:28:29','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">On behalf of World Bank, an Advocom Group.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/on-behalf-of-world-bank-an-advocom-group-2/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Low-Carbon Investing: Commonfund &#038; GPSU</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/low-carbon-investing-commonfund-gpsu/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-10-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:28:29','2022-01-19 07:28:29','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8683',0,'revision','',0),(8684,1,'2022-01-19 07:28:30','2022-01-19 07:28:30','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">EALOOR STUDY ABROAD</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:28:30','2022-01-19 07:28:30','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8684',0,'revision','',0),(8685,1,'2022-01-19 07:30:34','2022-01-19 07:30:34','','Nursing Jobs uk','','inherit','closed','closed','','8679-revision-v1','','','2022-01-19 07:30:34','2022-01-19 07:30:34','',8679,'http://demoweblinks.in/ealoorconsultancy/?p=8685',0,'revision','',0),(8686,1,'2022-01-19 07:31:07','2022-01-19 07:31:07','','Ealoor Study Abroad','','inherit','closed','closed','','8677-revision-v1','','','2022-01-19 07:31:07','2022-01-19 07:31:07','',8677,'http://demoweblinks.in/ealoorconsultancy/?p=8686',0,'revision','',0),(8687,1,'2022-01-19 07:31:43','2022-01-19 07:31:43','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">EALOOR STUDY ABROAD</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:31:43','2022-01-19 07:31:43','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8687',0,'revision','',0),(8688,1,'2022-01-19 07:31:43','2022-01-19 07:31:43','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">EALOOR STUDY ABROAD</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:31:43','2022-01-19 07:31:43','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8688',0,'revision','',0),(8689,1,'2022-01-19 07:31:44','2022-01-19 07:31:44','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:31:44','2022-01-19 07:31:44','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8689',0,'revision','',0),(8690,1,'2022-01-19 07:33:34','2022-01-19 07:33:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:33:34','2022-01-19 07:33:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8690',0,'revision','',0),(8691,1,'2022-01-19 07:33:35','2022-01-19 07:33:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:33:35','2022-01-19 07:33:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8691',0,'revision','',0),(8692,1,'2022-01-19 07:33:35','2022-01-19 07:33:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:33:35','2022-01-19 07:33:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8692',0,'revision','',0),(8694,1,'2022-01-19 07:39:15','2022-01-19 07:39:15','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:39:15','2022-01-19 07:39:15','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8694',0,'revision','',0),(8695,1,'2022-01-19 07:39:15','2022-01-19 07:39:15','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-12.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Strategy for Norway Pension Fund Global</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/strategy-for-norway-pension-fund-global/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo1.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">International business development</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/international-business-development/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/case-logo2.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Supporting a unique global public-private partnership.</a></h4>\n                            Our client, a $4 billion provider of data-center infrastructure, asked us to help redesign its go-to-market approach to better.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/supporting-a-unique-global-public-private-partnership/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-08.jpg);\"></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Ant Financial: Flourishing Farmer Loans at MYbank</a></h4>\n                            This case study helps students understand the process of setting, reporting and eva luating financial performance.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ant-financial-flourishing-farmer-loans-at-mybank/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:39:15','2022-01-19 07:39:15','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8695',0,'revision','',0),(8696,1,'2022-01-19 07:39:17','2022-01-19 07:39:17','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:39:17','2022-01-19 07:39:17','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8696',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8699,1,'2022-01-19 07:45:23','2022-01-19 07:45:23','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:45:23','2022-01-19 07:45:23','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8699',0,'revision','',0),(8700,1,'2022-01-19 07:45:23','2022-01-19 07:45:23','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"#\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:45:23','2022-01-19 07:45:23','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8700',0,'revision','',0),(8701,1,'2022-01-19 07:45:24','2022-01-19 07:45:24','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:45:24','2022-01-19 07:45:24','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8701',0,'revision','',0),(8702,1,'2022-01-19 07:46:03','2022-01-19 07:46:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:46:03','2022-01-19 07:46:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8702',0,'revision','',0),(8703,1,'2022-01-19 07:46:03','2022-01-19 07:46:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:46:03','2022-01-19 07:46:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8703',0,'revision','',0),(8704,1,'2022-01-19 07:46:06','2022-01-19 07:46:06','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:46:06','2022-01-19 07:46:06','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8704',0,'revision','',0),(8706,1,'2022-01-19 07:49:29','2022-01-19 07:49:29','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}\n\n@media only screen and (max-width: 992px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:50%!important;\n	}\n}\n\n@media only screen and (max-width: 550px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:100%!important;\n	}\n}\n\n.scroll-top{\n	right:120px;\n}','ealoor','','publish','closed','closed','','ealoor','','','2022-02-16 13:57:35','2022-02-16 13:57:35','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/ealoor/',0,'custom_css','',0),(8707,1,'2022-01-19 07:49:29','2022-01-19 07:49:29','.case-study .item--readmore{\n	display:none;\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-19 07:49:29','2022-01-19 07:49:29','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8707',0,'revision','',0),(8709,1,'2022-01-19 07:54:40','2022-01-19 07:54:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:54:40','2022-01-19 07:54:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8709',0,'revision','',0),(8710,1,'2022-01-19 07:54:40','2022-01-19 07:54:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:54:40','2022-01-19 07:54:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8710',0,'revision','',0),(8711,1,'2022-01-19 07:54:42','2022-01-19 07:54:42','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 07:54:42','2022-01-19 07:54:42','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8711',0,'revision','',0),(8714,1,'2022-01-19 07:59:17','2022-01-19 07:59:17','.case-study .item--readmore{\n	display:none;\n}\n\na[href=\'.case-study .bg-image\']{ display: none }','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-19 07:59:17','2022-01-19 07:59:17','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8714',0,'revision','',0),(8716,1,'2022-01-19 08:00:57','2022-01-19 08:00:57','.case-study .item--readmore{\n	display:none;\n}\n\na[href=\'.case-study .bg-image\']{ display: none }\n\n.case-study a.bg-image {visibility:hidden; display:none;}\n','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-19 08:00:57','2022-01-19 08:00:57','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8716',0,'revision','',0),(8718,1,'2022-01-19 08:02:12','2022-01-19 08:02:12','.case-study .item--readmore{\n	display:none;\n}\n\na[href=\'.case-study .bg-image\']{ display: none }\n\n/* .case-study a.bg-image {visibility:hidden; display:none;} */\na[href] { display: none; }','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-19 08:02:12','2022-01-19 08:02:12','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8718',0,'revision','',0),(8720,1,'2022-01-19 08:04:27','2022-01-19 08:04:27','.case-study .item--readmore{\n	display:none;\n}\n\n','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-19 08:04:27','2022-01-19 08:04:27','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8720',0,'revision','',0),(8721,1,'2022-01-19 08:10:01','2022-01-19 08:10:01','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:10:01','2022-01-19 08:10:01','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8721',0,'revision','',0),(8722,1,'2022-01-19 08:10:01','2022-01-19 08:10:01','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n		[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Our Awesome Services                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve many services to solve problems.\n            </h3>\n		Consultio is a design studio founded in London and expanded our services, and become a multinational firm, offering solutions Worldwide.		\n                                                                                        <h3>Tax Consulting</h3>\n                                    Consultio is a design studio founded in London. Nowadays, we’ve grown&hellip;                                \n                                                                                        <h3>Tax Consulting</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/tax-consulting/\"></a>\n                                                                                        <h3>Content Marketing</h3>\n                                    We develop the relationships that underpin the next phase in your&hellip;                                \n                                                                                        <h3>Content Marketing</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/content-marketing/\"></a>\n                                                                                        <h3>SEO Optimization</h3>\n                                    What separates mori from all other web design agencies is ability&hellip;                                \n                                                                                        <h3>SEO Optimization</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/seo-optimization-2/\"></a>\n                                                                                        <h3>Web Development</h3>\n                                    Increase social reach and productivity with our App Directory, a collection&hellip;                                \n                                                                                        <h3>Web Development</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/web-development/\"></a>\n                                                                                        <h3>Media Promotion</h3>\n                                    Rounding up a bunch of specific designs & talking about the&hellip;                                \n                                                                                        <h3>Media Promotion</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/media-promotion/\"></a>\n                                                                                        <h3>Penalty Recovery</h3>\n                                    At its core, every brand has something special to reveal something&hellip;                                \n                                                                                        <h3>Penalty Recovery</h3>\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/service/penalty-recovery/\"></a>\n                        About Our Company                                            \n	    <h3 data-wow-delay=\"ms\">\n            Made to measure: Getting design leadership.\n            </h3>\n		Soon after Chris Kempczinski became CEO, the <b>COVID-19 pandemic</b> hit, and the restaurant chain suffered the worst quarter in its history.		\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"220ms\">\n                Get Started\n    </a>\n	            		<b>Consultio</b> is a Global Institute	            	\n	            		Teams Moving in Different Directions	            	\n	            		Making No Progress During Meetings	            	\n	            		Inefficient Communication Silos	            	\n        	<img width=\"380\" height=\"534\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\" alt=\"\" />        \n    		<h4>15 Years Experiences</h4>\n            Consultio has been optimized to give your visitors the best.\n                1\n                +\n                            Satisfied Clients\n                1\n                +\n                            Expert Team\n                1\n                +\n                            Activate Products\n                1\n                +\n                            Awards Winning\n        <h3 data-wow-delay=\"ms\">\n            Learn more from frequently asked question\n            </h3>\n                    <a>\n                                                                        The Simple Metric That&#039;s Taking Over Big Business                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Increase in service quality and customer satisfaction                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n                    <a>\n                                                                        Development of optimized customer communication                        \n                    </a>\n                Stay ahead in a rapidly changing world. Subscribe to Bain Insights, our monthly look at the critical issues facing <b>global businesses.</b>\n        <h3 data-wow-delay=\"ms\">\n            We make business successful!\n            </h3>\n		Make a free consultation with us.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f6068-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6068\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6068-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<label>Name:</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Jhon Doe\" />\n<label>Phone:</label><input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"+88213567945\" />\n<label>Email:</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"sample@mail.com\" />\n<label>Service:</label><select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Service\">Service</option><option value=\"Business Consulting\">Business Consulting</option><option value=\"Startup Business\">Startup Business</option><option value=\"Leadership Work\">Leadership Work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Get a Free Consultation</button>\nYour personal information will be hidden\n</form>            \n                        Our Partners                                            \n	    <h3 data-wow-delay=\"ms\">\n            We have many partners with outstanding growth. \n            </h3>\n		We&#8217;ve been lucky to collaborate with a long list of customers, located in and out of the country. Thanks to them we have grown as professionals.		\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" />                                                                    </a>\n			We are available <cite>24 x 7 x 365</cite>		\n			Call us at:		\n			<a href=\"tel:+3-345-368-0245\">+3-345-368-0245</a>\n				<a href=\"#\">\n												or <b>Live Chat</b> with us		\n				</a>\n			for real time support.		\n                        Steps to start                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some easy steps to get started!\n            </h3>\n            <img width=\"351\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon1.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Make a business plan            </h3>\n                We value the experimentation, the reformation of the message.\n                    1\n            <img width=\"286\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon2.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Contact us by message            </h3>\n                We value the experimentation, the reformation of the message.\n                    2\n            <img width=\"340\" height=\"300\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon3.png\" alt=\"\" />        \n                    <h3 data-wow-delay=\"ms\">\n                Consult with us!            </h3>\n                We value the experimentation, the reformation of the message.\n                    3\n                        Our Pricing                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’ve offered the best pricing for you.\n            </h3>\n		We love what we do and we do it with passion. We value the experimentation, the reformation of the message, and the smart incentives.		\n                            Monthly\n                                        Annually\n                ** Get a huge discount for annual package!\n                            $15     \n                            /Month\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $45     \n                            /Month\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $75     \n                            /Month\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"#\">Get Started</a>\n                            $90\n                            /Annually\n                        <h4>Basic</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $180\n                            /Annually\n                        <h4>Standrad</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n                            $320\n                            /Annually\n                        <h4>Premium</h4>\n                        We have worked with companies across\nandinfrastructure providers.\n                        <ul>\n                                                                <li>Cost Transformation</li>\n                                                                    <li>Customer Experience Leadership</li>\n                                                                    <li>Customer Episode Design</li>\n                                                                    <li>Customer Value Management</li>\n                                                        </ul>\n                                <a href=\"# #\">Get Started</a>\n		* all terms &#038; conditions are applied		\n		    	<img width=\"56\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-icon-arrow1.png\" alt=\"\" />		\n        <h3 data-wow-delay=\"ms\">\n            Have a great opportunity to do <cite>consulting</cite> anytime!\n            </h3>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Google Play\n    </a>\n        <a href=\"#\" data-wow-delay=\"ms\">\n                Play Store\n    </a>\n                        <img width=\"860\" height=\"530\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-phone.png\" alt=\"\" />            		\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share story & more news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n            <a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"93\" height=\"122\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-logo.png\" alt=\"\" />        </a>    		\n        <h3 data-wow-delay=\"ms\">\n            Stay ahead in a rapidly changing world. <cite>Subscribe</cite> to our Insights.\n            </h3>\n	    <strong>Mailchimp for WordPress error:</strong> There is no form with ID 0, perhaps it was deleted?    \n		*I have read the Privacy Policy and agree to its terms.		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n		   			Newsletter\n		   			<h3>Subscribe to newsletter for getting update</h3>\n		   			Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An FAQ is a list of frequently asked questions.\n			   		<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n				    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n				    		<label>Enter mail address...</label>\n				    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Enter mail address...\">\n				    		<input type=\"submit\" value=\"Subscribe\">\n				    </form>\n					<img width=\"292\" height=\"434\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/newsletter-consulting-1.png\" alt=\"\" />				\n                        Team member                                            \n	    <h3 data-wow-delay=\"ms\">\n            Our expert team member will help you!\n            </h3>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-01-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-01\" title=\"b3-team-01\" />                                \n                                <h3>    \n                                    Lorio Bilton                                </h3>\n                                Founder of R.C Company\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b3-team-02-1.jpg\" width=\"247\" height=\"340\" alt=\"b3-team-02\" title=\"b3-team-02\" />                                \n                                <h3>    \n                                    Iven Rocky                                </h3>\n                                Senior Web Developer\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-01-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-01\" title=\"home-team-01\" />                                \n                                <h3>    \n                                    Adam Ivan                                 </h3>\n                                Chef Advisor\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/home-team-04-248x340.jpg\" width=\"248\" height=\"340\" alt=\"home-team-04\" title=\"home-team-04\" />                                \n                                <h3>    \n                                    Obira Franc                                </h3>\n                                Tax Consultant\n                                Lorem ipsum dolor sito amet, C ctetuer adipiscing. AnFAQ is a list of frequently asked questions (FAQs) answerson a\nparticular topic .pandamic.\n                                <ul>\n                                                                            <li><a href=\"tel:1-888-452-1505\">1-888-452-1505</a></li>\n                                                                                                                <li><a href=\"mailto:envato@gmail.com\">envato@gmail.com</a></li>\n                                                                    </ul>\n                                                                                                                        <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"#\" target=\"_blank\" rel=\"noopener\"></a>\n                                                                                    <a href=\"\" target=\"_blank\" rel=\"noopener\"></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-business3/team-details/\">Read more</a>\n    	    		<h3>Get a estimate</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5005-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n                        Latest Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april.png);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/construction/\" rel=\"tag\">Construction</a>                            \n                                                <h3><a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tax-home-loan/\" rel=\"tag\">Tax &amp; Home Loan</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/tracking/\" rel=\"tag\">Tracking</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting.&hellip;                            \n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n            <a href=\"https://demo.casethemes.net/consultio-business3/\">            <img width=\"171\" height=\"171\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/logo-footer-1.png\" alt=\"\" />        </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:10:01','2022-01-19 08:10:01','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8722',0,'revision','',0),(8723,1,'2022-01-19 08:10:02','2022-01-19 08:10:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:10:02','2022-01-19 08:10:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8723',0,'revision','',0),(8724,1,'2022-01-19 08:11:43','2022-01-19 08:11:43','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:11:43','2022-01-19 08:11:43','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8724',0,'revision','',0),(8725,1,'2022-01-19 08:11:43','2022-01-19 08:11:43','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:11:43','2022-01-19 08:11:43','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8725',0,'revision','',0),(8726,1,'2022-01-19 08:11:47','2022-01-19 08:11:47','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:11:47','2022-01-19 08:11:47','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8726',0,'revision','',0),(8727,1,'2022-01-19 08:15:38','2022-01-19 08:15:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:15:38','2022-01-19 08:15:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8727',0,'revision','',0),(8728,1,'2022-01-19 08:15:38','2022-01-19 08:15:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		We meet clients wherever they are on their paths to change—in every industry across the globe—and partner with them to create lasting value.\n		The post-digital age shows no signs of slowing down, and the need for rapid business transformation has never been greater.		\n                    <h3>\n                Market Management            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                    <h3>\n                Business Analysis            </h3>\n                Lorem ipsum dolor sito amet, conse ctetuer adipiscing.\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:15:38','2022-01-19 08:15:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8728',0,'revision','',0),(8729,1,'2022-01-19 08:15:40','2022-01-19 08:15:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:15:40','2022-01-19 08:15:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8729',0,'revision','',0),(8730,1,'2022-01-19 08:17:23','2022-01-19 08:17:23','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:17:23','2022-01-19 08:17:23','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8730',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8731,1,'2022-01-19 08:17:23','2022-01-19 08:17:23','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:17:23','2022-01-19 08:17:23','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8731',0,'revision','',0),(8732,1,'2022-01-19 08:17:25','2022-01-19 08:17:25','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Nursing Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:17:25','2022-01-19 08:17:25','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8732',0,'revision','',0),(8733,1,'2022-01-19 08:18:32','2022-01-19 08:18:32','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Nursing Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:18:32','2022-01-19 08:18:32','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8733',0,'revision','',0),(8734,1,'2022-01-19 08:18:32','2022-01-19 08:18:32','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                International Recruitments            </h3>\n                    <h3>\n                International Nursing Students            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:18:32','2022-01-19 08:18:32','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8734',0,'revision','',0),(8735,1,'2022-01-19 08:18:33','2022-01-19 08:18:33','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:18:33','2022-01-19 08:18:33','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8735',0,'revision','',0),(8736,1,'2022-01-19 08:20:13','2022-01-19 08:20:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:20:13','2022-01-19 08:20:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8736',0,'revision','',0),(8737,1,'2022-01-19 08:20:13','2022-01-19 08:20:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:20:13','2022-01-19 08:20:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8737',0,'revision','',0),(8738,1,'2022-01-19 08:20:14','2022-01-19 08:20:14','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:20:14','2022-01-19 08:20:14','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8738',0,'revision','',0),(8740,1,'2022-01-19 08:25:44','2022-01-19 08:25:44','','vimal_350x350_acf_cropped','','inherit','','closed','','vimal_350x350_acf_cropped','','','2022-01-19 08:25:44','2022-01-19 08:25:44','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped.png',0,'attachment','image/png',0),(8741,1,'2022-01-19 08:27:18','2022-01-19 08:27:18','','himaja','','inherit','','closed','','himaja','','','2022-01-19 08:27:18','2022-01-19 08:27:18','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja.png',0,'attachment','image/png',0),(8742,1,'2022-01-19 08:27:30','2022-01-19 08:27:30','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:27:30','2022-01-19 08:27:30','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8742',0,'revision','',0),(8743,1,'2022-01-19 08:27:30','2022-01-19 08:27:30','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:27:30','2022-01-19 08:27:30','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8743',0,'revision','',0),(8744,1,'2022-01-19 08:27:31','2022-01-19 08:27:31','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:27:31','2022-01-19 08:27:31','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8744',0,'revision','',0),(8745,1,'2022-01-19 08:29:31','2022-01-19 08:29:31','','WhatsApp-Image-2019-09-24-at-6.51.14-AM','','inherit','','closed','','whatsapp-image-2019-09-24-at-6-51-14-am','','','2022-01-19 08:29:31','2022-01-19 08:29:31','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM.jpeg',0,'attachment','image/jpeg',0),(8746,1,'2022-01-19 08:31:40','2022-01-19 08:31:40','','shawn','','inherit','','closed','','shawn','','','2022-01-19 08:31:40','2022-01-19 08:31:40','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn.png',0,'attachment','image/png',0),(8748,1,'2022-01-19 08:32:15','2022-01-19 08:32:15','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:32:15','2022-01-19 08:32:15','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8748',0,'revision','',0),(8749,1,'2022-01-19 08:32:15','2022-01-19 08:32:15','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/b2-testimonial-01-1.jpg\" width=\"210\" height=\"210\" alt=\"b2-testimonial-01\" title=\"b2-testimonial-01\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Farhan Rio</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team4-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team4\" title=\"h6-team4\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Kathleen Smith</h3>\n                                    (Agent Manager)\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/h6-team2-215x215.jpg\" width=\"215\" height=\"215\" alt=\"h6-team2\" title=\"h6-team2\" />                                    \n                                    As a app web crawler expert, I help to do organiza tions adjust to the expanding to the significace of internet promoting placeholder text.                                \n                                    <h3>Van Hunter </h3>\n                                    (Senior Director)\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:32:15','2022-01-19 08:32:15','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8749',0,'revision','',0),(8750,1,'2022-01-19 08:32:17','2022-01-19 08:32:17','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:32:17','2022-01-19 08:32:17','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8750',0,'revision','',0),(8751,1,'2022-01-19 08:33:33','2022-01-19 08:33:33','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:33:33','2022-01-19 08:33:33','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8751',0,'revision','',0),(8752,1,'2022-01-19 08:33:34','2022-01-19 08:33:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team                                \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:33:34','2022-01-19 08:33:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8752',0,'revision','',0),(8753,1,'2022-01-19 08:33:36','2022-01-19 08:33:36','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:33:36','2022-01-19 08:33:36','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8753',0,'revision','',0),(8754,1,'2022-01-19 08:35:13','2022-01-19 08:35:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:35:13','2022-01-19 08:35:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8754',0,'revision','',0),(8755,1,'2022-01-19 08:35:13','2022-01-19 08:35:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Amber Lee                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:35:13','2022-01-19 08:35:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8755',0,'revision','',0),(8756,1,'2022-01-19 08:35:14','2022-01-19 08:35:14','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 08:35:14','2022-01-19 08:35:14','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8756',0,'revision','',0),(8757,1,'2022-01-19 10:12:27','2022-01-19 10:12:27','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:12:27','2022-01-19 10:12:27','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8757',0,'revision','',0),(8758,1,'2022-01-19 10:12:27','2022-01-19 10:12:27','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                                    Co-founder\n                                “\n                                                                        Content marketing is a strategic marketing approach focused on creating and distributing valuable consistent content to attract and retain a clearly defined. At a minimum, marketing the PPP requires advertising.\n                                    <h3>    \n                                        Rebecca Leo                                    </h3>\n                                    Marketing\n                                “\n                                                                        So when a friend asked her to help design a house in Costa Rica, she jumped at the chance. she jumped at the chance. It was there that she stumbled upon La Iguana, a family-run cacao farm in the village of Mastatal.\n                                    <h3>    \n                                        Obira Franc                                     </h3>\n                                    Web Designer\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:12:27','2022-01-19 10:12:27','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8758',0,'revision','',0),(8759,1,'2022-01-19 10:12:28','2022-01-19 10:12:28','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:12:28','2022-01-19 10:12:28','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8759',0,'revision','',0),(8760,1,'2022-01-19 10:16:38','2022-01-19 10:16:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:16:38','2022-01-19 10:16:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8760',0,'revision','',0),(8761,1,'2022-01-19 10:16:38','2022-01-19 10:16:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How do you answer for consulting?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        What does Consultio Consulting do?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n                    <a>\n                                                                        Can you guarantee that our plan will raise capital?                        \n                    </a>\n                Lorem ipsum dolor sito amet, Conse ctetuer adipiscing. An<br />\nFAQ is a list of frequently asked questions (FAQs) answers<br />\non a particular topic .\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:16:38','2022-01-19 10:16:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8761',0,'revision','',0),(8762,1,'2022-01-19 10:16:40','2022-01-19 10:16:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:16:40','2022-01-19 10:16:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8762',0,'revision','',0),(8767,1,'2022-01-19 10:23:46','2022-01-19 10:23:46','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:23:46','2022-01-19 10:23:46','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8767',0,'revision','',0),(8768,1,'2022-01-19 10:23:46','2022-01-19 10:23:46','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            To review means to look back over something. \n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:23:46','2022-01-19 10:23:46','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8768',0,'revision','',0),(8769,1,'2022-01-19 10:23:47','2022-01-19 10:23:47','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What Our Clients Say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:23:47','2022-01-19 10:23:47','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8769',0,'revision','',0),(8770,1,'2022-01-19 10:24:02','2022-01-19 10:24:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What Our Clients Say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:02','2022-01-19 10:24:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8770',0,'revision','',0),(8771,1,'2022-01-19 10:24:02','2022-01-19 10:24:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What Our Clients Say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:02','2022-01-19 10:24:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8771',0,'revision','',0),(8772,1,'2022-01-19 10:24:03','2022-01-19 10:24:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:03','2022-01-19 10:24:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8772',0,'revision','',0),(8773,1,'2022-01-19 10:24:13','2022-01-19 10:24:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:13','2022-01-19 10:24:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8773',0,'revision','',0),(8774,1,'2022-01-19 10:24:13','2022-01-19 10:24:13','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients say&#8217;s\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:13','2022-01-19 10:24:13','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8774',0,'revision','',0),(8775,1,'2022-01-19 10:24:14','2022-01-19 10:24:14','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:14','2022-01-19 10:24:14','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8775',0,'revision','',0),(8776,1,'2022-01-19 10:24:57','2022-01-19 10:24:57','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:57','2022-01-19 10:24:57','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8776',0,'revision','',0),(8777,1,'2022-01-19 10:24:57','2022-01-19 10:24:57','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:57','2022-01-19 10:24:57','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8777',0,'revision','',0),(8778,1,'2022-01-19 10:24:58','2022-01-19 10:24:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:24:58','2022-01-19 10:24:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8778',0,'revision','',0),(8779,1,'2022-01-19 10:29:11','2022-01-19 10:29:11','<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>Free flight ticket</li>\n 	<li>Three month Free Accommodation</li>\n 	<li>Refund of visa</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund the OSCE exam cost</li>\n 	<li>Refund of Academic IELTS exam fee</li>\n 	<li>Free OSCE Training</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Experience :Operation theater</li>\n 	<li>Minimum experience : 6 months above</li>\n 	<li>Only the candidate with IELTS 7/ OET-B (Individual or clubbed) will be interviewed.</li>\n 	<li>According to new NMC criteria, we accept IELTS Writing score 6.5</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','publish','closed','open','','nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital','','','2022-01-19 11:34:50','2022-01-19 11:34:50','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8779',0,'post','',0),(8780,1,'2022-01-19 10:28:41','2022-01-19 10:28:41','','DIRECT-INTERVIEW','','inherit','','closed','','direct-interview','','','2022-01-19 10:28:41','2022-01-19 10:28:41','',8779,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png',0,'attachment','image/png',0),(8781,1,'2022-01-19 10:29:11','2022-01-19 10:29:11','','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 10:29:11','2022-01-19 10:29:11','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8781',0,'revision','',0),(8782,1,'2022-01-19 10:30:37','2022-01-19 10:30:37','','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 10:30:37','2022-01-19 10:30:37','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8782',0,'revision','',0),(8783,1,'2022-01-19 10:30:37','2022-01-19 10:30:37','','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 10:30:37','2022-01-19 10:30:37','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8783',0,'revision','',0),(8784,1,'2022-01-19 10:30:38','2022-01-19 10:30:38','<h2>Benefits of Package</h2><ul><li>Starting Salary £24,214 per annum</li><li>Free flight ticket</li><li>Three month Free Accommodation</li><li>Refund of visa</li><li>Refund the CBT exam cost</li><li>Refund the OSCE exam cost</li><li>Refund of Academic IELTS exam fee</li><li>Free OSCE Training</li><li>Refund of NMC Application Fee</li></ul><h3>Who Can Apply?</h3><ul><li>Experience :Operation theater</li><li>Minimum experience : 6 months above</li><li>Only the candidate with IELTS 7/ OET-B (Individual or clubbed) will be interviewed.</li><li>According to new NMC criteria, we accept IELTS Writing score 6.5</li></ul>		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 10:30:38','2022-01-19 10:30:38','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8784',0,'revision','',0),(8785,1,'2022-01-19 10:32:23','2022-01-19 10:32:23','<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>Free flight ticket</li>\n 	<li>Three month Free Accommodation</li>\n 	<li>Refund of visa</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund the OSCE exam cost</li>\n 	<li>Refund of Academic IELTS exam fee</li>\n 	<li>Free OSCE Training</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Experience :Operation theater</li>\n 	<li>Minimum experience : 6 months above</li>\n 	<li>Only the candidate with IELTS 7/ OET-B (Individual or clubbed) will be interviewed.</li>\n 	<li>According to new NMC criteria, we accept IELTS Writing score 6.5</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 10:32:23','2022-01-19 10:32:23','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8785',0,'revision','',0),(8786,1,'2022-01-19 10:35:10','2022-01-19 10:35:10','<h4><strong><u>Four Seasons Health Care Now Hiring&nbsp;</u></strong></h4>\n<strong>Benefits of the Package:</strong>\n<ul>\n 	<li>Salary band £16 - £18 per hour.</li>\n</ul>\n<strong>Job Description:</strong>\n<ul>\n 	<li>Maintain accurate, detailed reports and records.</li>\n 	<li>Monitor, record and report symptoms and changes in Service Users\' conditions.</li>\n 	<li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.</li>\n 	<li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. ·&nbsp;</li>\n 	<li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. ·&nbsp;</li>\n 	<li>To have responsibility for frontline supervision and supervise the care staff. ·&nbsp;</li>\n 	<li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.</li>\n</ul>\n<strong>Job Specification:</strong>\n<ul>\n 	<li>Registered Nurse with NMC PIN number required.</li>\n 	<li>Minimum one year experience in adult care.</li>\n 	<li>A proven track record of working in a similar adult care environment.</li>\n 	<li>The ability to ensure that residents’ needs, wishes and aspirations are acknowledged and met where possible.</li>\n 	<li>Excellent communication skills.&nbsp;</li>\n 	<li>Able to interact with residents, their families and members of staff.&nbsp;</li>\n</ul>\nKind and caring disposition with a real commitment to delivering the highest level of care at all times\n\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','RGN RECRUITMENT -NMC PINNED CANDIDATES','\n','publish','closed','open','','rgn-recruitment-nmc-pinned-candidates','','','2022-01-19 11:34:22','2022-01-19 11:34:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8786',0,'post','',0),(8787,1,'2022-01-19 10:34:45','2022-01-19 10:34:45','','perm_post1-1','','inherit','','closed','','perm_post1-1','','','2022-01-19 10:34:45','2022-01-19 10:34:45','',8786,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png',0,'attachment','image/png',0),(8788,1,'2022-01-19 10:35:10','2022-01-19 10:35:10','','RGN RECRUITMENT -NMC PINNED CANDIDATES','\nAt vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8786-revision-v1','','','2022-01-19 10:35:10','2022-01-19 10:35:10','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=8788',0,'revision','',0),(8789,1,'2022-01-19 10:36:14','2022-01-19 10:36:14','','RGN RECRUITMENT -NMC PINNED CANDIDATES','\nAt vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8786-revision-v1','','','2022-01-19 10:36:14','2022-01-19 10:36:14','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=8789',0,'revision','',0),(8790,1,'2022-01-19 10:36:14','2022-01-19 10:36:14','','RGN RECRUITMENT -NMC PINNED CANDIDATES','\nAt vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8786-revision-v1','','','2022-01-19 10:36:14','2022-01-19 10:36:14','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=8790',0,'revision','',0),(8791,1,'2022-01-19 10:36:15','2022-01-19 10:36:15','<h4><strong><u>Four Seasons Health Care Now Hiring </u></strong></h4><p><strong>Benefits of the Package:</strong></p><ul><li>Salary band £16 - £18 per hour.</li></ul><p><strong>Job Description:</strong></p><ul><li>Maintain accurate, detailed reports and records.</li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.</li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.</li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. · </li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. · </li><li>To have responsibility for frontline supervision and supervise the care staff. · </li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.</li></ul><p><strong>Job Specification:</strong></p><ul><li>Registered Nurse with NMC PIN number required.</li><li>Minimum one year experience in adult care.</li><li>A proven track record of working in a similar adult care environment.</li><li>The ability to ensure that residents’ needs, wishes and aspirations are acknowledged and met where possible.</li><li>Excellent communication skills. </li><li>Able to interact with residents, their families and members of staff. </li></ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times</p>		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>','RGN RECRUITMENT -NMC PINNED CANDIDATES','\nAt vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum. ','inherit','closed','closed','','8786-revision-v1','','','2022-01-19 10:36:15','2022-01-19 10:36:15','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=8791',0,'revision','',0),(8794,1,'2022-01-19 10:50:18','2022-01-19 10:50:18','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:18','2022-01-19 10:50:18','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8794',0,'revision','',0),(8795,1,'2022-01-19 10:50:18','2022-01-19 10:50:18','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Our Blog                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news from resource library. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/theme-07-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\" title=\"What we are capable to usually discovered.\">What we are capable to usually discovered.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:18','2022-01-19 10:50:18','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8795',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8796,1,'2022-01-19 10:50:19','2022-01-19 10:50:19','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:19','2022-01-19 10:50:19','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8796',0,'revision','',0),(8797,1,'2022-01-19 10:50:45','2022-01-19 10:50:45','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:45','2022-01-19 10:50:45','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8797',0,'revision','',0),(8798,1,'2022-01-19 10:50:45','2022-01-19 10:50:45','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		Follow our latest news and thoughts which focuses exclusively on design, art, vintage, and also work updates.		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:45','2022-01-19 10:50:45','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8798',0,'revision','',0),(8799,1,'2022-01-19 10:50:46','2022-01-19 10:50:46','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on study abroad.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:46','2022-01-19 10:50:46','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8799',0,'revision','',0),(8800,1,'2022-01-19 10:50:58','2022-01-19 10:50:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on study abroad.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:58','2022-01-19 10:50:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8800',0,'revision','',0),(8801,1,'2022-01-19 10:50:59','2022-01-19 10:50:59','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on study abroad.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:50:59','2022-01-19 10:50:59','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8801',0,'revision','',0),(8802,1,'2022-01-19 10:51:00','2022-01-19 10:51:00','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:51:00','2022-01-19 10:51:00','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8802',0,'revision','',0),(8803,1,'2022-01-19 10:54:53','2022-01-19 10:54:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:54:53','2022-01-19 10:54:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8803',0,'revision','',0),(8804,1,'2022-01-19 10:54:53','2022-01-19 10:54:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                        Case Studies                                            \n	    <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:54:53','2022-01-19 10:54:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8804',0,'revision','',0),(8805,1,'2022-01-19 10:54:54','2022-01-19 10:54:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 10:54:54','2022-01-19 10:54:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8805',0,'revision','',0),(8806,1,'2022-01-19 11:19:53','2022-01-19 11:19:53','','580b57fcd9996e24bc43c543','','inherit','','closed','','580b57fcd9996e24bc43c543','','','2022-01-19 11:19:53','2022-01-19 11:19:53','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/580b57fcd9996e24bc43c543.png',0,'attachment','image/png',0),(8808,1,'2022-01-19 11:25:57','2022-01-19 11:25:57','','Compare Study Abroad','','publish','closed','closed','','8808','','','2022-01-19 11:28:30','2022-01-19 11:28:30','',0,'http://demoweblinks.in/ealoorconsultancy/?post_type=whatsapp-accounts&#038;p=8808',0,'whatsapp-accounts','',0),(8809,1,'2022-01-19 11:27:22','2022-01-19 11:27:22','','Nursing Jobs UK','','publish','closed','closed','','nusrsing-jobs-uk','','','2022-01-19 11:27:40','2022-01-19 11:27:40','',0,'http://demoweblinks.in/ealoorconsultancy/?post_type=whatsapp-accounts&#038;p=8809',0,'whatsapp-accounts','',0),(8810,1,'2022-01-19 11:34:20','2022-01-19 11:34:20','<h4><strong><u>Four Seasons Health Care Now Hiring&nbsp;</u></strong></h4>\n<strong>Benefits of the Package:</strong>\n<ul>\n 	<li>Salary band £16 - £18 per hour.</li>\n</ul>\n<strong>Job Description:</strong>\n<ul>\n 	<li>Maintain accurate, detailed reports and records.</li>\n 	<li>Monitor, record and report symptoms and changes in Service Users\' conditions.</li>\n 	<li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.</li>\n 	<li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. ·&nbsp;</li>\n 	<li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. ·&nbsp;</li>\n 	<li>To have responsibility for frontline supervision and supervise the care staff. ·&nbsp;</li>\n 	<li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.</li>\n</ul>\n<strong>Job Specification:</strong>\n<ul>\n 	<li>Registered Nurse with NMC PIN number required.</li>\n 	<li>Minimum one year experience in adult care.</li>\n 	<li>A proven track record of working in a similar adult care environment.</li>\n 	<li>The ability to ensure that residents’ needs, wishes and aspirations are acknowledged and met where possible.</li>\n 	<li>Excellent communication skills.&nbsp;</li>\n 	<li>Able to interact with residents, their families and members of staff.&nbsp;</li>\n</ul>\nKind and caring disposition with a real commitment to delivering the highest level of care at all times\n\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','RGN RECRUITMENT -NMC PINNED CANDIDATES','\n','inherit','closed','closed','','8786-revision-v1','','','2022-01-19 11:34:20','2022-01-19 11:34:20','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=8810',0,'revision','',0),(8811,1,'2022-01-19 11:34:47','2022-01-19 11:34:47','<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>Free flight ticket</li>\n 	<li>Three month Free Accommodation</li>\n 	<li>Refund of visa</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund the OSCE exam cost</li>\n 	<li>Refund of Academic IELTS exam fee</li>\n 	<li>Free OSCE Training</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Experience :Operation theater</li>\n 	<li>Minimum experience : 6 months above</li>\n 	<li>Only the candidate with IELTS 7/ OET-B (Individual or clubbed) will be interviewed.</li>\n 	<li>According to new NMC criteria, we accept IELTS Writing score 6.5</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)','','inherit','closed','closed','','8779-revision-v1','','','2022-01-19 11:34:47','2022-01-19 11:34:47','',8779,'http://demoweblinks.in/ealoorconsultancy/?p=8811',0,'revision','',0),(8812,1,'2022-01-19 11:35:11','2022-01-19 11:35:11','<a href=\"https://ealoorconsultancy.co.uk/news-events/gloucester-hospitals-nhs-foundations-trust-direct-interview/\">Gloucester Hospitals NHS Foundations Trust – Direct Interview</a>\n<h2>Benefits of Package</h2>\n<ul>\n 	<li>Starting Salary £24,214 per annum</li>\n 	<li>One way flight to the UK</li>\n 	<li>One month Free Accommodation</li>\n 	<li>Free Certificate Of Sponsorship</li>\n 	<li>Free 1 x OSCE exam cost</li>\n 	<li>Refund the Medical Exams / TB Screening</li>\n 	<li>Refund Visa Application</li>\n 	<li>Refund the Immigration Health Surcharge</li>\n 	<li>Refund the CBT exam cost</li>\n 	<li>Refund of NMC Application Fee</li>\n</ul>\n<h3>Who Can Apply?</h3>\n<ul>\n 	<li>Theatre and Surgery Nurses with NMC Decision letter.</li>\n 	<li>Theatre and Surgery Nurses: New assessment completed candidates.</li>\n 	<li>Candidates ready to travel on April 2020</li>\n 	<li>Immediate COS for interview successful candidates.</li>\n</ul>\n<a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\nApply\n</a>','Strategy for Norway\'s Peion to Fund Global.','','inherit','closed','closed','','8379-revision-v1','','','2022-01-19 11:35:11','2022-01-19 11:35:11','',8379,'http://demoweblinks.in/ealoorconsultancy/?p=8812',0,'revision','',0),(8813,1,'2022-01-19 11:36:43','2022-01-19 11:36:43','','Untitled-2','','inherit','','closed','','untitled-2','','','2022-01-19 11:36:43','2022-01-19 11:36:43','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg',0,'attachment','image/jpeg',0),(8814,1,'2022-01-19 11:37:40','2022-01-19 11:37:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 11:37:40','2022-01-19 11:37:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8814',0,'revision','',0),(8815,1,'2022-01-19 11:37:40','2022-01-19 11:37:40','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    At vero eos et accusamus et iustoodio digni goikussimos ducimus qui blanp ditiis praesum voluum.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 11:37:40','2022-01-19 11:37:40','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8815',0,'revision','',0),(8816,1,'2022-01-19 11:37:41','2022-01-19 11:37:41','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-19 11:37:41','2022-01-19 11:37:41','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8816',0,'revision','',0),(8820,1,'2022-01-19 11:40:43','2022-01-19 11:40:43','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 The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery columns=\"2\" link=\"file\" size=\"full\" ids=\"1557,1556\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','You can use it for any kind website like.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','inherit','closed','closed','','161-revision-v1','','','2022-01-19 11:40:43','2022-01-19 11:40:43','',161,'http://demoweblinks.in/ealoorconsultancy/?p=8820',0,'revision','',0),(8828,1,'2022-01-19 11:42:40','2022-01-19 11:42:40','<h3 data-wow-delay=\"ms\">\n                            <i></i>\nAbout Us</h3>\nEaloor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.\n\nHaving multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\">\nAwarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\nBritish Council Approved Agent\nBest International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\nREC Membership\nIn 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n<h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a></h4>\n<h3>\n                            OSCE TRAINING</h3>\n<ul>\n 	<li>Started the first-ever private OSCE training for nurses</li>\n 	<li>Training conducted for NHS Hospitals</li>\n 	<li>Over 100 batch of training completed</li>\n 	<li>Batch and one to one session conducted every month</li>\n 	<li>99% pass rate for all our students</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n<h3>\n                            CBT TRAINING</h3>\n<ul>\n 	<li>Over 2500 questions and answers available</li>\n 	<li>5 days of completely free training trial</li>\n 	<li>Mock tests available</li>\n 	<li>Most widely used among international nurses</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n<h3>\n                            NMC SUPPORT</h3>\n<ul>\n 	<li>Revalidation Assistance</li>\n 	<li>Overseas NMC Registration Assistance</li>\n</ul>\n<h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n<i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nIn the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n<h3 data-wow-delay=\"ms\">\n                            <i></i>\nWHOM WE RECRUIT?</h3>\nStrictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:\n\nRegistered General Nurses\nMental Health Nurses\nPaediatrics Nurses\nCommunity Nurses\nHealth Visitors\nAllied Health Professionals\nEmergency Nurse Practitioners\nParamedics\nGP’s\nRadiographers\nOUR CLIENTS\n<h3 data-wow-delay=\"ms\"></h3>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-19 11:42:40','2022-01-19 11:42:40','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8828',0,'revision','',0),(8829,1,'2022-01-19 11:42:40','2022-01-19 11:42:40','<h3 data-wow-delay=\"ms\">\n                            <i></i>\nAbout Us</h3>\nEaloor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.\n\nHaving multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\">\nAwarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals\nBritish Council Approved Agent\nBest International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.\nREC Membership\nIn 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n<h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a></h4>\n<h3>\n                            OSCE TRAINING</h3>\n<ul>\n 	<li>Started the first-ever private OSCE training for nurses</li>\n 	<li>Training conducted for NHS Hospitals</li>\n 	<li>Over 100 batch of training completed</li>\n 	<li>Batch and one to one session conducted every month</li>\n 	<li>99% pass rate for all our students</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n<h3>\n                            CBT TRAINING</h3>\n<ul>\n 	<li>Over 2500 questions and answers available</li>\n 	<li>5 days of completely free training trial</li>\n 	<li>Mock tests available</li>\n 	<li>Most widely used among international nurses</li>\n</ul>\n<a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n<h3>\n                            NMC SUPPORT</h3>\n<ul>\n 	<li>Revalidation Assistance</li>\n 	<li>Overseas NMC Registration Assistance</li>\n</ul>\n<h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n<i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nIn the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n<h3 data-wow-delay=\"ms\">\n                            <i></i>\nWHOM WE RECRUIT?</h3>\nStrictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:\n\nRegistered General Nurses\nMental Health Nurses\nPaediatrics Nurses\nCommunity Nurses\nHealth Visitors\nAllied Health Professionals\nEmergency Nurse Practitioners\nParamedics\nGP’s\nRadiographers\nOUR CLIENTS\n<h3 data-wow-delay=\"ms\"></h3>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-19 11:42:40','2022-01-19 11:42:40','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8829',0,'revision','',0),(8830,1,'2022-01-19 11:42:40','2022-01-19 11:42:40','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-19 11:42:40','2022-01-19 11:42:40','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8830',0,'revision','',0),(8831,1,'2022-01-19 13:25:52','2022-01-19 13:25:52','Contact us\n<h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b></h3>\nWe’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\">\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>\n<h6>\n						EALOOR CONSULTANCY UK LTD.</h6>\nEaloor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\n<h6>\n						Mail us:</h6>\ninfo@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel:+44 161 456 7166\n<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY</h6>\nCarnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel : 0484 4017565\nMob No: +91 9995399366/ +91 9995205566\nWhatsApp: +91 9995377366\nUK Land Line: +44 161 456 7166\n<h6>\n						EALOOR CONSULTANCY &amp; ACADAMY</h6>\nNagampadam Kottayam - 686006 Kerala India\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel: 91-481-2581566\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 13:25:52','2022-01-19 13:25:52','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8831',0,'revision','',0),(8832,1,'2022-01-19 13:25:52','2022-01-19 13:25:52','Contact us\n<h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b></h3>\nWe’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o1\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\">\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p>\n\n<ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\">\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\">\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\">\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\">\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\">\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\">\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\">\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\">\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\">\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\">\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\">\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Services\">Services</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp Business\">StartUp Business</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>\n<h6>\n						EALOOR CONSULTANCY UK LTD.</h6>\nEaloor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA\n<h6>\n						Mail us:</h6>\ninfo@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel:+44 161 456 7166\n<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY</h6>\nCarnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel : 0484 4017565\nMob No: +91 9995399366/ +91 9995205566\nWhatsApp: +91 9995377366\nUK Land Line: +44 161 456 7166\n<h6>\n						EALOOR CONSULTANCY &amp; ACADAMY</h6>\nNagampadam Kottayam - 686006 Kerala India\n<h6>\n						Mail us:</h6>\nstudies@ealoorconsultancy.co.uk\nstudyabroad@ealoorconsultancy.co.uk\n<h6>\n						Call for help:</h6>\nTel: 91-481-2581566\n\n<style>/*! elementor - v3.5.3 - 28-12-2021 */<br />\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" title=\"London Eye, London, United Kingdom\" aria-label=\"London Eye, London, United Kingdom\"></iframe>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 13:25:52','2022-01-19 13:25:52','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8832',0,'revision','',0),(8833,1,'2022-01-19 13:25:52','2022-01-19 13:25:52','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-19 13:25:52','2022-01-19 13:25:52','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8833',0,'revision','',0),(8836,1,'2022-01-20 11:59:11','2022-01-20 11:59:11','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"slider4-1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"img1_1170x450_acf_cropped\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"u-blog-02\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-bg-section4\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider3\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-banner1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2-150x150.jpg\" alt=\"\" /></a>\n			</figure>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-01-20 11:59:11','2022-01-20 11:59:11','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8836',0,'revision','',0),(8837,1,'2022-01-20 14:04:16','2022-01-20 14:04:16','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-20 14:04:16','2022-01-20 14:04:16','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8837',0,'revision','',0),(8838,1,'2022-01-20 14:04:17','2022-01-20 14:04:17','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality <br/>support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n                <a href=\"https://youtu.be/HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/03/update-service-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-service-02\" title=\"update-service-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\" title=\"How Stay Calm from the First Time.\">How Stay Calm from the First Time.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-600x373.jpg\" width=\"600\" height=\"373\" alt=\"u-blog-02\" title=\"u-blog-02\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" title=\"Why You’ll Never Succeed at 7 Habits.\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/theme-15-600x373.jpg\" width=\"600\" height=\"373\" alt=\"theme-15\" title=\"theme-15\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/you-can-use-it-for-any-kind-website-like-2/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-20 14:04:17','2022-01-20 14:04:17','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8838',0,'revision','',0),(8839,1,'2022-01-20 14:04:18','2022-01-20 14:04:18','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-20 14:04:18','2022-01-20 14:04:18','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8839',0,'revision','',0),(8840,1,'2022-01-21 05:59:00','2022-01-21 05:59:00','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 05:59:00','2022-01-21 05:59:00','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8840',0,'revision','',0),(8841,1,'2022-01-21 05:59:00','2022-01-21 05:59:00','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back <br/>guarantee            </h3>\n                    <h3>\n                Expert team <br/>members            </h3>\n                    <h3>\n                Cheap price <br/>provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 05:59:00','2022-01-21 05:59:00','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8841',0,'revision','',0),(8842,1,'2022-01-21 05:59:01','2022-01-21 05:59:01','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 05:59:01','2022-01-21 05:59:01','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8842',0,'revision','',0),(8844,1,'2022-01-21 06:07:20','2022-01-21 06:07:20','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:07:20','2022-01-21 06:07:20','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8844',0,'revision','',0),(8845,1,'2022-01-21 06:07:20','2022-01-21 06:07:20','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs                                \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities.                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals                                \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:07:20','2022-01-21 06:07:20','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8845',0,'revision','',0),(8846,1,'2022-01-21 06:07:21','2022-01-21 06:07:21','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:07:21','2022-01-21 06:07:21','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8846',0,'revision','',0),(8848,1,'2022-01-21 06:13:52','2022-01-21 06:13:52','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:13:52','2022-01-21 06:13:52','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8848',0,'revision','',0),(8849,1,'2022-01-21 06:13:52','2022-01-21 06:13:52','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:13:52','2022-01-21 06:13:52','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8849',0,'revision','',0),(8850,1,'2022-01-21 06:13:53','2022-01-21 06:13:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:13:53','2022-01-21 06:13:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8850',0,'revision','',0),(8852,1,'2022-01-21 06:16:47','2022-01-21 06:16:47','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:16:47','2022-01-21 06:16:47','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8852',0,'revision','',0),(8853,1,'2022-01-21 06:16:47','2022-01-21 06:16:47','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:16:47','2022-01-21 06:16:47','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8853',0,'revision','',0),(8854,1,'2022-01-21 06:16:48','2022-01-21 06:16:48','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:16:48','2022-01-21 06:16:48','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8854',0,'revision','',0),(8856,1,'2022-01-21 06:24:19','2022-01-21 06:24:19','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\n<h3>Donald Johnson</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-01.jpg\" alt=\"testimonial-01\" width=\"109\" height=\"109\" />\n<h3>Kathleen Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\n<h3>Jewel D Smith</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Brad Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:24:19','2022-01-21 06:24:19','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8856',0,'revision','',0),(8857,1,'2022-01-21 06:24:19','2022-01-21 06:24:19','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\n<h3>Donald Johnson</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-01\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-01.jpg\" alt=\"testimonial-01\" width=\"109\" height=\"109\" />\n<h3>Kathleen Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\n<h3>Jewel D Smith</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Brad Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-finance4/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:24:19','2022-01-21 06:24:19','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8857',0,'revision','',0),(8858,1,'2022-01-21 06:24:19','2022-01-21 06:24:19','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Donald Johnson                                </h3>\n                                Executive Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Kathleen Smith                                </h3>\n                                SEO Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:24:19','2022-01-21 06:24:19','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8858',0,'revision','',0),(8860,1,'2022-01-21 06:29:55','2022-01-21 06:29:55','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Donald Johnson                                </h3>\n                                Executive Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Kathleen Smith                                </h3>\n                                SEO Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:29:55','2022-01-21 06:29:55','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8860',0,'revision','',0),(8861,1,'2022-01-21 06:29:55','2022-01-21 06:29:55','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Donald Johnson                                </h3>\n                                Executive Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/testimonial-01.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Kathleen Smith                                </h3>\n                                SEO Manager\n                            “\n                            I had the pleasure of working with Consultio as part of a \n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:29:55','2022-01-21 06:29:55','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8861',0,'revision','',0),(8862,1,'2022-01-21 06:29:55','2022-01-21 06:29:55','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Neethu Varghese                                </h3>\n                                MSc Public Health\n                            “\n                            Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Shawn Biju                                </h3>\n                                Diagnostic Radiography\n                            “\n                            Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:29:55','2022-01-21 06:29:55','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8862',0,'revision','',0),(8863,1,'2022-01-21 06:30:57','2022-01-21 06:30:57','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:30:57','2022-01-21 06:30:57','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8863',0,'revision','',0),(8864,1,'2022-01-21 06:30:57','2022-01-21 06:30:57','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"#\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:30:57','2022-01-21 06:30:57','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8864',0,'revision','',0),(8865,1,'2022-01-21 06:30:58','2022-01-21 06:30:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:30:58','2022-01-21 06:30:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8865',0,'revision','',0),(8867,1,'2022-01-21 06:31:39','2022-01-21 06:31:39','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Neethu Varghese                                </h3>\n                                MSc Public Health\n                            “\n                            Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Shawn Biju                                </h3>\n                                Diagnostic Radiography\n                            “\n                            Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:31:39','2022-01-21 06:31:39','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8867',0,'revision','',0),(8868,1,'2022-01-21 06:31:39','2022-01-21 06:31:39','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Neethu Varghese                                </h3>\n                                MSc Public Health\n                            “\n                            Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Shawn Biju                                </h3>\n                                Diagnostic Radiography\n                            “\n                            Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:31:39','2022-01-21 06:31:39','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8868',0,'revision','',0),(8869,1,'2022-01-21 06:31:39','2022-01-21 06:31:39','Testimonial                                            \n	    <h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.\n            </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                                                                        <a href=\"#\"></a>\n                                <h3>    \n                                    Neethu Varghese                                </h3>\n                                MSc Public Health\n                            “\n                            Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Shawn Biju                                </h3>\n                                Diagnostic Radiography\n                            “\n                            Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Vimal T S                                </h3>\n                                RGN |Central Manchester Foundation Trust\n                            “\n                            I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. &#039;They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, &#039;Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n                                    <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\" />                                    \n                                                                                        <a href=\"\"></a>\n                                <h3>    \n                                    Himaja Pavani                                </h3>\n                                RGN | Central Manchester Foundation Trust\n                            “\n                            I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n        <a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\n                View more \n    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:31:39','2022-01-21 06:31:39','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8869',0,'revision','',0),(8870,1,'2022-01-21 06:32:32','2022-01-21 06:32:32','Testimonial\n<h3 data-wow-delay=\"ms\">\n            It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-300x300.jpeg\" width=\"300\" height=\"300\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\">\n<a href=\"#\"></a>\n<h3>\n                                    Neethu Varghese</h3>\nMSc Public Health\n“\nEaloor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad. I am really pleased and highly satisfied with the services. I found the service and response of this agency to be excellent. Once again thank you so much Joxy and Alphy for helping me achieve my dreams.\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-300x300.png\" width=\"300\" height=\"300\" alt=\"shawn\" title=\"shawn\">\n<a href=\"\"></a>\n<h3>\n                                    Shawn Biju</h3>\nDiagnostic Radiography\n“\nHi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream. By their help I got admission in the University of Hertfordshire,UK. The help that they have done for me is really appreciable and highly recommended. Thank you for everything and all the best for the future programs\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-300x300.png\" width=\"300\" height=\"300\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\">\n<a href=\"\"></a>\n<h3>\n                                    Vimal T S</h3>\nRGN |Central Manchester Foundation Trust\n“\nI am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK, as they provide very good service and guidance. Staff are friendly and approachable. \'They co-ordinate the entire process in an excellent manner. They have supported me for everything, starting from my NMC ‘Registration, Job Application, CoS Documentation, \'Visa Submission and Joining formalities. Their Tre-departure Orientation was extremely helpful as I have never been to UK before. I have joined Central Manchester foundation Trust and successfully passed OSCE. My sincere gratitude to the entire team\n<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-300x300.png\" width=\"300\" height=\"300\" alt=\"himaja\" title=\"himaja\">\n<a href=\"\"></a>\n<h3>\n                                    Himaja Pavani</h3>\nRGN | Central Manchester Foundation Trust\n“\nI am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems. I achieved my dream goal to work abroad purely because of there support. I highly recommend to choose NursingjobsUK to fulfill your career goals\n<a href=\"https://demo.casethemes.net/consultio-finance4/testimonials/\" data-wow-delay=\"ms\">\nView more\n</a>\n<a href=\"#\">\n<img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\">                                                                    </a>\n<a href=\"#\">\n<img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\">                                                                    </a>','Testimonials v.4','','inherit','closed','closed','','3502-revision-v1','','','2022-01-21 06:32:32','2022-01-21 06:32:32','',3502,'http://demoweblinks.in/ealoorconsultancy/?p=8870',0,'revision','',0),(8872,1,'2022-01-21 06:34:37','2022-01-21 06:34:37','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:34:37','2022-01-21 06:34:37','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8872',0,'revision','',0),(8873,1,'2022-01-21 06:34:37','2022-01-21 06:34:37','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                 \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:34:37','2022-01-21 06:34:37','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8873',0,'revision','',0),(8874,1,'2022-01-21 06:34:38','2022-01-21 06:34:38','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-21 06:34:38','2022-01-21 06:34:38','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8874',0,'revision','',0),(8877,1,'2022-01-24 04:03:59','2022-01-24 04:03:59','','cheerful-students-jumping-excitement','','inherit','','closed','','cheerful-students-jumping-excitement','','','2022-01-24 04:03:59','2022-01-24 04:03:59','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement.jpg',0,'attachment','image/jpeg',0),(8878,1,'2022-01-24 04:07:40','2022-01-24 04:07:40','','Multiethnic group of young cheerful students standing outdoors','Picture of multiethnic group of young cheerful students standing outdoors. Looking camera.','inherit','','closed','','multiethnic-group-of-young-cheerful-students-standing-outdoors','','','2022-01-24 04:07:40','2022-01-24 04:07:40','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors.jpg',0,'attachment','image/jpeg',0),(8879,1,'2022-01-24 04:34:18','2022-01-24 04:34:18','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:34:18','2022-01-24 04:34:18','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8879',0,'revision','',0),(8880,1,'2022-01-24 04:34:18','2022-01-24 04:34:18','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"800\" height=\"553\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/08/video-intro-1.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:34:18','2022-01-24 04:34:18','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8880',0,'revision','',0),(8881,1,'2022-01-24 04:34:19','2022-01-24 04:34:19','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:34:19','2022-01-24 04:34:19','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8881',0,'revision','',0),(8882,1,'2022-01-24 04:36:46','2022-01-24 04:36:46','','Cheerful students standing and waving outdoors.','Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.','inherit','','closed','','cheerful-students-standing-and-waving-outdoors','','','2022-01-24 04:36:46','2022-01-24 04:36:46','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-standing-waving-outdoors.jpg',0,'attachment','image/jpeg',0),(8883,1,'2022-01-24 04:37:45','2022-01-24 04:37:45','','portrait-group-students-celebrating-their-graduation','','inherit','','closed','','portrait-group-students-celebrating-their-graduation','','','2022-01-24 04:37:45','2022-01-24 04:37:45','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/portrait-group-students-celebrating-their-graduation.jpg',0,'attachment','image/jpeg',0),(8884,1,'2022-01-24 04:38:34','2022-01-24 04:38:34','','Young female surgeon with medical team in back before surgery','Young female surgeon with medical team in back before surgery','inherit','','closed','','young-female-surgeon-with-medical-team-in-back-before-surgery','','','2022-01-24 04:38:34','2022-01-24 04:38:34','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/young-female-surgeon-with-medical-team-back-before-surgery.jpg',0,'attachment','image/jpeg',0),(8885,1,'2022-01-24 04:39:16','2022-01-24 04:39:16','','group-students-happy-be-back-university','','inherit','','closed','','group-students-happy-be-back-university','','','2022-01-24 04:39:16','2022-01-24 04:39:16','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university.jpg',0,'attachment','image/jpeg',0),(8886,1,'2022-01-24 04:40:06','2022-01-24 04:40:06','','doctor-talking-their-clinic','','inherit','','closed','','doctor-talking-their-clinic','','','2022-01-24 04:40:06','2022-01-24 04:40:06','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg',0,'attachment','image/jpeg',0),(8887,1,'2022-01-24 04:46:12','2022-01-24 04:46:12','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:12','2022-01-24 04:46:12','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8887',0,'revision','',0),(8888,1,'2022-01-24 04:46:12','2022-01-24 04:46:12','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/about1-pj0hrconjgsje3vvidgzjhucynsrh1dhj4vljrr6bc.png\" title=\"about1\" alt=\"about1\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:12','2022-01-24 04:46:12','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8888',0,'revision','',0),(8889,1,'2022-01-24 04:46:12','2022-01-24 04:46:12','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:12','2022-01-24 04:46:12','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8889',0,'revision','',0),(8890,1,'2022-01-24 04:46:38','2022-01-24 04:46:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:38','2022-01-24 04:46:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8890',0,'revision','',0),(8891,1,'2022-01-24 04:46:38','2022-01-24 04:46:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:38','2022-01-24 04:46:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8891',0,'revision','',0),(8892,1,'2022-01-24 04:46:38','2022-01-24 04:46:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-24 04:46:38','2022-01-24 04:46:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8892',0,'revision','',0),(8893,1,'2022-01-24 04:49:18','2022-01-24 04:49:18','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-24 04:49:18','2022-01-24 04:49:18','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8893',0,'revision','',0),(8894,1,'2022-01-24 04:49:18','2022-01-24 04:49:18','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Nursing Jobs UK\">Nursing Jobs UK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-24 04:49:18','2022-01-24 04:49:18','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8894',0,'revision','',0),(8895,1,'2022-01-24 04:49:18','2022-01-24 04:49:18','Contact us                                            \n	    <h3 data-wow-delay=\"ms\">\n            If need any info please contact <b>us!</b>\n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"538\" height=\"368\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4.png 538w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" sizes=\"(max-width: 538px) 100vw, 538px\" />															\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f4227-o2\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"4227\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f4227-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n@media (min-width:768px){.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon,.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img{margin:auto}.elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}@media (max-width:767px){.elementor-widget-icon-box .elementor-icon-box-icon{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-icon-box .elementor-icon-box-wrapper{text-align:center}.elementor-widget-icon-box .elementor-icon-box-title a{color:inherit}.elementor-widget-icon-box .elementor-icon-box-content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.elementor-widget-icon-box .elementor-icon-box-description{margin:0}</style>		\n				<h6>\n						EALOOR CONSULTANCY UK LTD.					\n				</h6>\n									<p>\n						Ealoor Consultancy UK Ltd 67 Europa Business Park Bird Hall Lane Cheadle Heath Stockport, Manchester SK3 0XA					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						info@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel:+44 161 456 7166					</p>\n				<h6>\n						EALOOR OVERSEAS EDUCATION CONSULTANCY					\n				</h6>\n									<p>\n						Carnival Infopark, Phase II, 1st Floor Kakkandu, Cochin, Kerala, India, 682 030					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel : 0484 4017565 <br>\nMob No: +91 9995399366/ +91 9995205566 <br>\nWhatsApp: +91 9995377366<br>\n UK Land Line: +44 161 456 7166					</p>\n				<h6>\n						EALOOR CONSULTANCY & ACADAMY					\n				</h6>\n									<p>\n						Nagampadam Kottayam - 686006 Kerala India					</p>\n				<h6>\n						Mail us:					\n				</h6>\n									<p>\n						studies@ealoorconsultancy.co.uk<br/>\nstudyabroad@ealoorconsultancy.co.uk					</p>\n				<h6>\n						Call for help:					\n				</h6>\n									<p>\n						Tel: 91-481-2581566					</p>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','Contact v.4','','inherit','closed','closed','','3514-revision-v1','','','2022-01-24 04:49:18','2022-01-24 04:49:18','',3514,'http://demoweblinks.in/ealoorconsultancy/?p=8895',0,'revision','',0),(8896,1,'2022-01-24 04:50:58','2022-01-24 04:50:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:50:58','2022-01-24 04:50:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8896',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (8897,1,'2022-01-24 04:50:58','2022-01-24 04:50:58','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:50:58','2022-01-24 04:50:58','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8897',0,'revision','',0),(8898,1,'2022-01-24 04:50:59','2022-01-24 04:50:59','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 04:50:59','2022-01-24 04:50:59','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8898',0,'revision','',0),(8899,1,'2022-01-24 05:26:32','2022-01-24 05:26:32','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:26:32','2022-01-24 05:26:32','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8899',0,'revision','',0),(8900,1,'2022-01-24 05:26:32','2022-01-24 05:26:32','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:26:32','2022-01-24 05:26:32','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8900',0,'revision','',0),(8901,1,'2022-01-24 05:26:33','2022-01-24 05:26:33','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:26:33','2022-01-24 05:26:33','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8901',0,'revision','',0),(8902,1,'2022-01-24 05:29:34','2022-01-24 05:29:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:29:34','2022-01-24 05:29:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8902',0,'revision','',0),(8903,1,'2022-01-24 05:29:34','2022-01-24 05:29:34','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:29:34','2022-01-24 05:29:34','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8903',0,'revision','',0),(8904,1,'2022-01-24 05:29:35','2022-01-24 05:29:35','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:29:35','2022-01-24 05:29:35','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8904',0,'revision','',0),(8905,1,'2022-01-24 05:30:49','2022-01-24 05:30:49','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:30:49','2022-01-24 05:30:49','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8905',0,'revision','',0),(8906,1,'2022-01-24 05:30:49','2022-01-24 05:30:49','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:30:49','2022-01-24 05:30:49','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8906',0,'revision','',0),(8907,1,'2022-01-24 05:30:50','2022-01-24 05:30:50','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:30:50','2022-01-24 05:30:50','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8907',0,'revision','',0),(8908,1,'2022-01-24 05:31:54','2022-01-24 05:31:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:31:54','2022-01-24 05:31:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8908',0,'revision','',0),(8909,1,'2022-01-24 05:31:55','2022-01-24 05:31:55','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:31:55','2022-01-24 05:31:55','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8909',0,'revision','',0),(8910,1,'2022-01-24 05:31:56','2022-01-24 05:31:56','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:31:56','2022-01-24 05:31:56','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8910',0,'revision','',0),(8911,1,'2022-01-24 05:36:21','2022-01-24 05:36:21','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:36:21','2022-01-24 05:36:21','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8911',0,'revision','',0),(8912,1,'2022-01-24 05:36:22','2022-01-24 05:36:22','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:36:22','2022-01-24 05:36:22','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8912',0,'revision','',0),(8913,1,'2022-01-24 05:36:23','2022-01-24 05:36:23','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 05:36:23','2022-01-24 05:36:23','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8913',0,'revision','',0),(8915,1,'2022-01-24 05:37:54','2022-01-24 05:37:54','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-01-24 05:37:54','2022-01-24 05:37:54','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=8915',0,'revision','',0),(8916,1,'2022-01-24 13:08:02','2022-01-24 13:08:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 13:08:02','2022-01-24 13:08:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8916',0,'revision','',0),(8917,1,'2022-01-24 13:08:03','2022-01-24 13:08:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"https://demo.casethemes.net/consultio-finance4/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 13:08:03','2022-01-24 13:08:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8917',0,'revision','',0),(8918,1,'2022-01-24 13:08:03','2022-01-24 13:08:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-24 13:08:03','2022-01-24 13:08:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8918',0,'revision','',0),(8920,1,'2022-01-25 03:56:33','0000-00-00 00:00:00','','test','','draft','closed','closed','','','','','2022-01-25 03:56:33','2022-01-25 03:56:33','',0,'http://demoweblinks.in/ealoorconsultancy/?post_type=header&#038;p=8920',0,'header','',0),(8921,1,'2022-01-25 04:03:42','2022-01-25 04:03:42','','WhatsApp Image 2022-01-24 at 7.55.50 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-50-pm','','','2022-01-25 04:03:42','2022-01-25 04:03:42','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.jpeg',0,'attachment','image/jpeg',0),(8922,1,'2022-01-25 04:04:07','2022-01-25 04:04:07','','WhatsApp Image 2022-01-24 at 7.55.48 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-48-pm','','','2022-01-25 04:04:07','2022-01-25 04:04:07','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.jpeg',0,'attachment','image/jpeg',0),(8923,1,'2022-01-25 04:04:33','2022-01-25 04:04:33','','WhatsApp Image 2022-01-24 at 7.55.47 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-47-pm','','','2022-01-25 04:04:33','2022-01-25 04:04:33','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.jpeg',0,'attachment','image/jpeg',0),(8924,1,'2022-01-25 10:51:31','2022-01-25 10:51:31','','WhatsApp Image 2022-01-24 at 8.02.14 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-8-02-14-pm','','','2022-01-25 10:51:31','2022-01-25 10:51:31','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png',0,'attachment','image/png',0),(8925,1,'2022-01-25 10:51:53','2022-01-25 10:51:53','','WhatsApp Image 2022-01-24 at 8.02.13 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-8-02-13-pm','','','2022-01-25 10:51:53','2022-01-25 10:51:53','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png',0,'attachment','image/png',0),(8926,1,'2022-01-25 10:52:10','2022-01-25 10:52:10','','WhatsApp Image 2022-01-24 at 8.02.12 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-8-02-12-pm','','','2022-01-25 10:52:10','2022-01-25 10:52:10','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png',0,'attachment','image/png',0),(8927,1,'2022-01-25 10:52:31','2022-01-25 10:52:31','','WhatsApp Image 2022-01-24 at 8.02.07 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-8-02-07-pm','','','2022-01-25 10:52:31','2022-01-25 10:52:31','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png',0,'attachment','image/png',0),(8928,1,'2022-01-25 10:53:02','2022-01-25 10:53:02','','WhatsApp Image 2022-01-24 at 7.55.56 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-56-pm','','','2022-01-25 10:53:02','2022-01-25 10:53:02','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png',0,'attachment','image/png',0),(8929,1,'2022-01-25 10:53:30','2022-01-25 10:53:30','','WhatsApp Image 2022-01-24 at 7.55.55 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-55-pm','','','2022-01-25 10:53:30','2022-01-25 10:53:30','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png',0,'attachment','image/png',0),(8930,1,'2022-01-25 10:53:48','2022-01-25 10:53:48','','WhatsApp Image 2022-01-24 at 7.55.55 PM (2)','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-55-pm-2','','','2022-01-25 10:53:48','2022-01-25 10:53:48','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png',0,'attachment','image/png',0),(8931,1,'2022-01-25 10:54:07','2022-01-25 10:54:07','','WhatsApp Image 2022-01-24 at 7.55.55 PM (1)','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-55-pm-1','','','2022-01-25 10:54:07','2022-01-25 10:54:07','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png',0,'attachment','image/png',0),(8932,1,'2022-01-25 10:54:29','2022-01-25 10:54:29','','WhatsApp Image 2022-01-24 at 7.55.54 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-54-pm','','','2022-01-25 10:54:29','2022-01-25 10:54:29','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png',0,'attachment','image/png',0),(8933,1,'2022-01-25 10:54:46','2022-01-25 10:54:46','','WhatsApp Image 2022-01-24 at 7.55.53 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-53-pm','','','2022-01-25 10:54:46','2022-01-25 10:54:46','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png',0,'attachment','image/png',0),(8934,1,'2022-01-25 10:55:12','2022-01-25 10:55:12','','WhatsApp Image 2022-01-24 at 7.55.52 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-52-pm','','','2022-01-25 10:55:12','2022-01-25 10:55:12','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png',0,'attachment','image/png',0),(8935,1,'2022-01-25 10:55:32','2022-01-25 10:55:32','','WhatsApp Image 2022-01-24 at 7.55.51 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-51-pm','','','2022-01-25 10:55:32','2022-01-25 10:55:32','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png',0,'attachment','image/png',0),(8936,1,'2022-01-25 10:55:48','2022-01-25 10:55:48','','WhatsApp Image 2022-01-24 at 7.55.50 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-50-pm-2','','','2022-01-25 10:55:48','2022-01-25 10:55:48','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png',0,'attachment','image/png',0),(8937,1,'2022-01-25 10:56:07','2022-01-25 10:56:07','','WhatsApp Image 2022-01-24 at 7.55.48 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-48-pm-2','','','2022-01-25 10:56:07','2022-01-25 10:56:07','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png',0,'attachment','image/png',0),(8938,1,'2022-01-25 10:56:24','2022-01-25 10:56:24','','WhatsApp Image 2022-01-24 at 7.55.47 PM','','inherit','','closed','','whatsapp-image-2022-01-24-at-7-55-47-pm-2','','','2022-01-25 10:56:24','2022-01-25 10:56:24','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png',0,'attachment','image/png',0),(8939,1,'2022-01-25 10:56:49','2022-01-25 10:56:49','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 10:56:49','2022-01-25 10:56:49','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8939',0,'revision','',0),(8940,1,'2022-01-25 10:56:50','2022-01-25 10:56:50','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 10:56:50','2022-01-25 10:56:50','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8940',0,'revision','',0),(8941,1,'2022-01-25 10:56:50','2022-01-25 10:56:50','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 10:56:50','2022-01-25 10:56:50','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8941',0,'revision','',0),(8942,1,'2022-01-25 11:04:03','2022-01-25 11:04:03','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:04:03','2022-01-25 11:04:03','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8942',0,'revision','',0),(8943,1,'2022-01-25 11:04:03','2022-01-25 11:04:03','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/Untitled-2.jpg\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:04:03','2022-01-25 11:04:03','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8943',0,'revision','',0),(8944,1,'2022-01-25 11:04:03','2022-01-25 11:04:03','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:04:03','2022-01-25 11:04:03','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8944',0,'revision','',0),(8945,1,'2022-01-25 11:05:38','2022-01-25 11:05:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:05:38','2022-01-25 11:05:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8945',0,'revision','',0),(8946,1,'2022-01-25 11:05:38','2022-01-25 11:05:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:05:38','2022-01-25 11:05:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8946',0,'revision','',0),(8947,1,'2022-01-25 11:05:38','2022-01-25 11:05:38','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-01-25 11:05:38','2022-01-25 11:05:38','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8947',0,'revision','',0),(8948,1,'2022-01-25 11:30:20','2022-01-25 11:30:20','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 11:30:20','2022-01-25 11:30:20','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8948',0,'revision','',0),(8949,1,'2022-01-25 11:30:21','2022-01-25 11:30:21','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 11:30:21','2022-01-25 11:30:21','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8949',0,'revision','',0),(8950,1,'2022-01-25 11:30:21','2022-01-25 11:30:21','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-01-25 11:30:21','2022-01-25 11:30:21','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8950',0,'revision','',0),(8953,1,'2022-02-09 13:27:22','2022-01-31 04:11:17','','INTERNATIONAL RECRUITMENT','','publish','closed','closed','','international-nursing-recruitment','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'https://demoweblinks.in/ealoorconsultancy/?p=8953',3,'nav_menu_item','',0),(8956,1,'2022-02-09 13:27:23','2022-01-31 05:13:46','','NURSING CLIENTS','','publish','closed','closed','','nursing-clients','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'https://demoweblinks.in/ealoorconsultancy/?p=8956',11,'nav_menu_item','',0),(8957,1,'2022-02-09 13:27:23','2022-01-31 05:13:46','','STUDENT CLIENTS','','publish','closed','closed','','student-clients','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'https://demoweblinks.in/ealoorconsultancy/?p=8957',12,'nav_menu_item','',0),(8959,1,'2022-02-03 12:51:32','2022-02-03 12:51:32','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-ealoor','','','2022-02-03 12:51:32','2022-02-03 12:51:32','',0,'http://demoweblinks.in/ealoorconsultancy/index.php/2022/02/03/wp-global-styles-ealoor/',0,'wp_global_styles','',0),(8960,1,'2022-02-09 13:27:22','2022-02-03 12:53:26','','STUDY IN UK','','publish','closed','closed','','study-in-uk','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8960',9,'nav_menu_item','',0),(8961,1,'2022-02-09 13:27:23','2022-02-03 12:55:09','','STUDY ABROAD','','publish','closed','closed','','study-abroad','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8961',14,'nav_menu_item','',0),(8962,1,'2022-02-09 13:27:23','2022-02-03 12:55:09','','NURSING RECRUITMENT','','publish','closed','closed','','nursing-recruitment','','','2022-02-09 13:27:23','2022-02-09 13:27:23','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8962',15,'nav_menu_item','',0),(8963,1,'2022-02-03 13:00:00','2022-02-03 13:00:00','','Study In UK','','inherit','closed','closed','','8677-revision-v1','','','2022-02-03 13:00:00','2022-02-03 13:00:00','',8677,'http://demoweblinks.in/ealoorconsultancy/?p=8963',0,'revision','',0),(8964,1,'2022-02-03 13:03:02','2022-02-03 13:03:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:03:02','2022-02-03 13:03:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8964',0,'revision','',0),(8965,1,'2022-02-03 13:03:02','2022-02-03 13:03:02','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Ealoor Study Abroad</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/ealoor-study-abroad/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                Best quality support            </h3>\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                Money back guarantee            </h3>\n                    <h3>\n                Expert team members            </h3>\n                    <h3>\n                Cheap price provided            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.3\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:03:02','2022-02-03 13:03:02','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8965',0,'revision','',0),(8966,1,'2022-02-03 13:03:03','2022-02-03 13:03:03','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:03:03','2022-02-03 13:03:03','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8966',0,'revision','',0),(8968,1,'2022-02-03 13:29:54','2022-02-03 13:29:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:29:54','2022-02-03 13:29:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8968',0,'revision','',0),(8969,1,'2022-02-03 13:29:54','2022-02-03 13:29:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"844d422\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.47 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.48 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.50 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.51 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 7.55.52 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM-150x95.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"242208a\" data-elementor-lightbox-title=\"WhatsApp Image 2022-01-24 at 8.02.07 PM\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\'><img width=\"150\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM-150x95.png\" alt=\"\" /></a>\n			</figure>\n        <a data-wow-delay=\"ms\">\n                View More\n    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:29:54','2022-02-03 13:29:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8969',0,'revision','',0),(8970,1,'2022-02-03 13:29:55','2022-02-03 13:29:55','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:29:55','2022-02-03 13:29:55','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8970',0,'revision','',0),(8971,1,'2022-02-03 13:30:47','2022-02-03 13:30:47','','WhatsApp Image 2022-02-02 at 8.24.51 PM','','inherit','','closed','','whatsapp-image-2022-02-02-at-8-24-51-pm','','','2022-02-03 13:30:47','2022-02-03 13:30:47','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg',0,'attachment','image/jpeg',0),(8972,1,'2022-02-03 13:32:04','2022-02-03 13:32:04','','WhatsApp Image 2022-02-02 at 8.19.53 PM','','inherit','','closed','','whatsapp-image-2022-02-02-at-8-19-53-pm','','','2022-02-03 13:32:04','2022-02-03 13:32:04','',9,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg',0,'attachment','image/jpeg',0),(8973,1,'2022-02-03 13:34:10','2022-02-03 13:34:10','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:34:10','2022-02-03 13:34:10','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8973',0,'revision','',0),(8974,1,'2022-02-03 13:34:11','2022-02-03 13:34:11','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n                    <h3>\n                British Council Approved Agent            </h3>\n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:34:11','2022-02-03 13:34:11','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8974',0,'revision','',0),(8975,1,'2022-02-03 13:34:11','2022-02-03 13:34:11','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n            <img width=\"673\" height=\"278\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                British Council Approved Agent            </h3>\n            <img width=\"1104\" height=\"320\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-03 13:34:11','2022-02-03 13:34:11','',9,'http://demoweblinks.in/ealoorconsultancy/?p=8975',0,'revision','',0),(8976,1,'2022-02-03 13:40:23','2022-02-03 13:40:23','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:23','2022-02-03 13:40:23','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8976',0,'revision','',0),(8977,1,'2022-02-03 13:40:23','2022-02-03 13:40:23','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:23','2022-02-03 13:40:23','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8977',0,'revision','',0),(8978,1,'2022-02-03 13:40:24','2022-02-03 13:40:24','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:24','2022-02-03 13:40:24','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8978',0,'revision','',0),(8979,1,'2022-02-03 13:40:42','2022-02-03 13:40:42','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:42','2022-02-03 13:40:42','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8979',0,'revision','',0),(8980,1,'2022-02-03 13:40:42','2022-02-03 13:40:42','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:42','2022-02-03 13:40:42','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8980',0,'revision','',0),(8981,1,'2022-02-03 13:40:42','2022-02-03 13:40:42','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:40:42','2022-02-03 13:40:42','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8981',0,'revision','',0),(8982,1,'2022-02-03 13:41:27','2022-02-03 13:41:27','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:41:27','2022-02-03 13:41:27','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8982',0,'revision','',0),(8983,1,'2022-02-03 13:41:27','2022-02-03 13:41:27','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:41:27','2022-02-03 13:41:27','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8983',0,'revision','',0),(8984,1,'2022-02-03 13:41:28','2022-02-03 13:41:28','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:41:28','2022-02-03 13:41:28','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8984',0,'revision','',0),(8985,1,'2022-02-03 13:44:14','2022-02-03 13:44:14','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:44:14','2022-02-03 13:44:14','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8985',0,'revision','',0),(8986,1,'2022-02-03 13:44:14','2022-02-03 13:44:14','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n															<img width=\"640\" height=\"427\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg\" alt=\"\" srcset=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-1024x683.jpg 1024w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-300x200.jpg 300w, http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-768x512.jpg 768w\" sizes=\"(max-width: 640px) 100vw, 640px\" />															\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:44:14','2022-02-03 13:44:14','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8986',0,'revision','',0),(8987,1,'2022-02-03 13:44:14','2022-02-03 13:44:14','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n                        <img width=\"2560\" height=\"1707\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-scaled.jpg\" alt=\"\" />            		\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-03 13:44:14','2022-02-03 13:44:14','',26,'http://demoweblinks.in/ealoorconsultancy/?p=8987',0,'revision','',0),(8988,1,'2022-02-03 13:46:34','2022-02-03 13:46:34','','Study Abroad UK','','inherit','closed','closed','','8677-revision-v1','','','2022-02-03 13:46:34','2022-02-03 13:46:34','',8677,'http://demoweblinks.in/ealoorconsultancy/?p=8988',0,'revision','',0),(8989,1,'2022-02-03 14:25:11','2022-02-03 14:25:11','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"slider4-1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"img1_1170x450_acf_cropped\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"u-blog-02\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-bg-section4\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider3\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-banner1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2-150x150.jpg\" alt=\"\" /></a>\n			</figure>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-03 14:25:11','2022-02-03 14:25:11','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8989',0,'revision','',0),(8990,1,'2022-02-03 14:25:56','2022-02-03 14:25:56','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Gallery\n            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"slider4-1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/slider4-1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"img1_1170x450_acf_cropped\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped.png\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/img1_1170x450_acf_cropped-150x150.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"u-blog-02\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/u-blog-02-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/04/h-case2-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-case1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/h-case1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-bg-section4\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-bg-section4-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider3\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider3-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"h-banner1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/h-banner1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider1\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider1-150x150.jpg\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf29d4b\" data-elementor-lightbox-title=\"bg-slider2\" href=\'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2.jpg\'><img width=\"150\" height=\"150\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2021/03/bg-slider2-150x150.jpg\" alt=\"\" /></a>\n			</figure>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-03 14:25:56','2022-02-03 14:25:56','',20,'http://demoweblinks.in/ealoorconsultancy/?p=8990',0,'revision','',0),(8992,1,'2022-02-09 13:27:22','2022-02-04 03:59:10','','NURSES','','publish','closed','closed','','nurses','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8992',4,'nav_menu_item','',0),(8993,1,'2022-02-09 13:27:22','2022-02-04 03:59:10','','AHP (ALLIED HEALTH PROFESSIONALS)','','publish','closed','closed','','ahp-allied-health-professionals','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8993',5,'nav_menu_item','',0),(8994,1,'2022-02-09 13:27:22','2022-02-04 04:00:39','','DOCTORS','','publish','closed','closed','','doctors','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8994',6,'nav_menu_item','',0),(8995,1,'2022-02-09 13:27:22','2022-02-04 04:00:39','','SENIOR CARE ASSISTANT','','publish','closed','closed','','senior-care-assistant','','','2022-02-09 13:27:22','2022-02-09 13:27:22','',0,'http://demoweblinks.in/ealoorconsultancy/?p=8995',7,'nav_menu_item','',0),(8997,1,'2022-02-14 04:14:28','2022-02-14 04:14:28','','ad4a67a25bc3732713de694a782d441b','','inherit','','closed','','ad4a67a25bc3732713de694a782d441b','','','2022-02-14 04:14:28','2022-02-14 04:14:28','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/ad4a67a25bc3732713de694a782d441b.jpg',0,'attachment','image/jpeg',0),(8998,1,'2022-02-14 04:15:27','2022-02-14 04:15:27','','sm_5b32227ca3eb9','','inherit','','closed','','sm_5b32227ca3eb9','','','2022-02-14 04:15:27','2022-02-14 04:15:27','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/sm_5b32227ca3eb9.jpg',0,'attachment','image/jpeg',0),(8999,1,'2022-02-14 04:19:31','2022-02-14 04:19:31','','kindpng_7363083','','inherit','','closed','','kindpng_7363083','','','2022-02-14 04:19:31','2022-02-14 04:19:31','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/kindpng_7363083.png',0,'attachment','image/png',0),(9000,1,'2022-02-14 04:23:08','2022-02-14 04:23:08','','kindpng_1913293','','inherit','','closed','','kindpng_1913293','','','2022-02-14 04:23:08','2022-02-14 04:23:08','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/kindpng_1913293.png',0,'attachment','image/png',0),(9001,1,'2022-02-14 04:26:52','2022-02-14 04:26:52','','kindpng_44729','','inherit','','closed','','kindpng_44729','','','2022-02-14 04:26:52','2022-02-14 04:26:52','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/kindpng_44729.png',0,'attachment','image/png',0),(9002,1,'2022-02-14 06:04:04','2022-02-14 06:04:04','<h4><strong><u>Four Seasons Health Care Now Hiring </u></strong></h4><p><strong>Benefits of the Package:</strong></p><ul><li>Salary band £16 - £18 per hour.</li></ul><p><strong>Job Description:</strong></p><ul><li>Maintain accurate, detailed reports and records.</li><li>Monitor, record and report symptoms and changes in Service Users\' conditions.</li><li>Consult and coordinate with health care team members to assess, plan, implement and evaluate Service Users care plans to ensure personalization.</li><li>To assess the individual needs of the patients and to ensure that they receive the highest standard of personal care and attention. · </li><li>To have the ability and knowledge of nursing and management the home ensuring the well-being of the residents and their physical, emotional and social needs. · </li><li>To have responsibility for frontline supervision and supervise the care staff. · </li><li>To be in charge of the shift and take the responsibility for the smooth running of the service and whilst they are on duty, liaise with managers and senior nurses to ensure effective communication for the benefit of clients and their family.</li></ul><p><strong>Job Specification:</strong></p><ul><li>Registered Nurse with NMC PIN number required.</li><li>Minimum one year experience in adult care.</li><li>A proven track record of working in a similar adult care environment.</li><li>The ability to ensure that residents’ needs, wishes and aspirations are acknowledged and met where possible.</li><li>Excellent communication skills. </li><li>Able to interact with residents, their families and members of staff. </li></ul><p>Kind and caring disposition with a real commitment to delivering the highest level of care at all times</p>		\n        <a href=\"https://forms.zohopublic.com/ealoor/form/InitialCandidateRegistration/formperma/6huDNbENmYG6pMF433qKX5eyS04iq4fjqyyvVgXoSG8\" data-wow-delay=\"ms\">\n                Apply\n    </a>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);-webkit-box-pack:var(--justify-content,center);-ms-flex-pack:var(--justify-content,center);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;background-color:#818a91;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#818a91}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{-webkit-border-radius:10%;border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{-webkit-border-radius:50%;border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','RGN RECRUITMENT -NMC PINNED CANDIDATES','\n','inherit','closed','closed','','8786-autosave-v1','','','2022-02-14 06:04:04','2022-02-14 06:04:04','',8786,'http://demoweblinks.in/ealoorconsultancy/?p=9002',0,'revision','',0),(9003,1,'2022-02-14 06:14:35','2022-02-14 06:14:35','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n        <ul id=\"menu-home-menu\"><li id=\"menu-item-8512\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">HOME</a></li>\n<li id=\"menu-item-8636\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">ABOUT US</a></li>\n<li id=\"menu-item-8953\"><a href=\"#\">INTERNATIONAL RECRUITMENT</a>\n<ul>\n	<li id=\"menu-item-8992\"><a href=\"#\">NURSES</a></li>\n	<li id=\"menu-item-8993\"><a href=\"#\">AHP (ALLIED HEALTH PROFESSIONALS)</a></li>\n	<li id=\"menu-item-8994\"><a href=\"#\">DOCTORS</a></li>\n	<li id=\"menu-item-8995\"><a href=\"#\">SENIOR CARE ASSISTANT</a></li>\n</ul>\n</li>\n<li id=\"menu-item-8514\"><a href=\"#\">STUDY ABROAD</a>\n<ul>\n	<li id=\"menu-item-8960\"><a href=\"https://demoweblinks.in/comparestudyabroad/\">STUDY IN UK</a></li>\n</ul>\n</li>\n<li id=\"menu-item-8515\"><a href=\"#\">CLIENTS</a>\n<ul>\n	<li id=\"menu-item-8956\"><a href=\"https://www.nursingjobsuk.co.uk/our-clients\">NURSING CLIENTS</a></li>\n	<li id=\"menu-item-8957\"><a href=\"https://comparestudyabroad.co.uk/\">STUDENT CLIENTS</a></li>\n</ul>\n</li>\n<li id=\"menu-item-8516\"><a href=\"#\">GALLERY</a>\n<ul>\n	<li id=\"menu-item-8961\"><a href=\"#\">STUDY ABROAD</a></li>\n	<li id=\"menu-item-8962\"><a href=\"#\">NURSING RECRUITMENT</a></li>\n</ul>\n</li>\n<li id=\"menu-item-8672\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">CONTACT US</a></li>\n</ul>    \n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-14 06:14:35','2022-02-14 06:14:35','',20,'http://demoweblinks.in/ealoorconsultancy/?p=9003',0,'revision','',0),(9004,1,'2022-02-14 06:16:54','2022-02-14 06:16:54',' ','','','publish','closed','closed','','9004','','','2022-02-14 06:16:54','2022-02-14 06:16:54','',0,'http://demoweblinks.in/ealoorconsultancy/?p=9004',1,'nav_menu_item','',0),(9005,1,'2022-02-14 06:16:54','2022-02-14 06:16:54','','About us','','publish','closed','closed','','about-us-10','','','2022-02-14 06:16:54','2022-02-14 06:16:54','',0,'http://demoweblinks.in/ealoorconsultancy/?p=9005',2,'nav_menu_item','',0),(9006,1,'2022-02-14 06:16:54','2022-02-14 06:16:54','','Contact us','','publish','closed','closed','','contact-us-5','','','2022-02-14 06:16:54','2022-02-14 06:16:54','',0,'http://demoweblinks.in/ealoorconsultancy/?p=9006',3,'nav_menu_item','',0);
INSERT INTO `wp_posts` VALUES (9007,1,'2022-02-14 06:17:35','2022-02-14 06:17:35','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n        <ul id=\"menu-quick-links\"><li id=\"menu-item-9004\"><a href=\"http://demoweblinks.in/ealoorconsultancy/\">Home</a></li>\n<li id=\"menu-item-9005\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">About us</a></li>\n<li id=\"menu-item-9006\"><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">Contact us</a></li>\n</ul>    \n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-14 06:17:35','2022-02-14 06:17:35','',20,'http://demoweblinks.in/ealoorconsultancy/?p=9007',0,'revision','',0),(9008,1,'2022-02-14 06:21:07','2022-02-14 06:21:07','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy\">\n                                                                                                                                Home                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">\n                                                                                                                                About Us                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">\n                                                                                                                                Contact us                                                                    </a>\n                </li>\n            </ul>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-14 06:21:07','2022-02-14 06:21:07','',20,'http://demoweblinks.in/ealoorconsultancy/?p=9008',0,'revision','',0),(9009,1,'2022-02-14 06:26:56','2022-02-14 06:26:56','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy\">\n                                                                                                                                Home                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">\n                                                                                                                                About Us                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">\n                                                                                                                                Contact us                                                                    </a>\n                </li>\n            </ul>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-02-14 06:26:56','2022-02-14 06:26:56','',20,'http://demoweblinks.in/ealoorconsultancy/?p=9009',0,'revision','',0),(9011,1,'2022-02-14 06:29:07','2022-02-14 06:29:07','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}\n\n@media only screen and (max-width: 768px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:50%!important;\n	}\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-02-14 06:29:07','2022-02-14 06:29:07','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=9011',0,'revision','',0),(9013,1,'2022-02-14 06:29:53','2022-02-14 06:29:53','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}\n\n@media only screen and (max-width: 992px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:50%!important;\n	}\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-02-14 06:29:53','2022-02-14 06:29:53','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=9013',0,'revision','',0),(9015,1,'2022-02-14 06:31:12','2022-02-14 06:31:12','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}\n\n@media only screen and (max-width: 992px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:50%!important;\n	}\n}\n\n@media only screen and (max-width: 550px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:100%!important;\n	}\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-02-14 06:31:12','2022-02-14 06:31:12','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=9015',0,'revision','',0),(9016,1,'2022-02-16 12:16:03','2022-02-16 12:16:03','','Default Kit','','inherit','closed','closed','','8174-revision-v1','','','2022-02-16 12:16:03','2022-02-16 12:16:03','',8174,'http://demoweblinks.in/ealoorconsultancy/?p=9016',0,'revision','',0),(9018,1,'2022-02-16 13:57:35','2022-02-16 13:57:35','.case-study .item--readmore{\n	display:none;\n}\n\n@media screen and (max-width: 1199px){\n.ct-case-study-carousel-layout5 .ct-slick-carousel[data-arrows=\"true\"] {\n    padding-bottom: 10px;\n}\n}\n\n@media only screen and (max-width: 992px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:50%!important;\n	}\n}\n\n@media only screen and (max-width: 550px){\n	.footercol1,.footercol2,.footercol3,.footercol4{\n		width:100%!important;\n	}\n}\n\n.scroll-top{\n	right:120px;\n}','ealoor','','inherit','closed','closed','','8706-revision-v1','','','2022-02-16 13:57:35','2022-02-16 13:57:35','',8706,'http://demoweblinks.in/ealoorconsultancy/?p=9018',0,'revision','',0),(9020,1,'2022-02-24 11:04:53','2022-02-24 11:04:53','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n            <img width=\"673\" height=\"278\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                British Council Approved Agent            </h3>\n            <img width=\"1104\" height=\"320\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-24 11:04:53','2022-02-24 11:04:53','',9,'http://demoweblinks.in/ealoorconsultancy/?p=9020',0,'revision','',0),(9021,1,'2022-02-24 11:04:54','2022-02-24 11:04:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Study In UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-in-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients with our capability.\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n            <img width=\"673\" height=\"278\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                British Council Approved Agent            </h3>\n            <img width=\"1104\" height=\"320\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                        FAQ                                            \n	    <h3 data-wow-delay=\"ms\">\n            Some faq for more inquiry\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-24 11:04:54','2022-02-24 11:04:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=9021',0,'revision','',0),(9022,1,'2022-02-24 11:04:54','2022-02-24 11:04:54','[rev_slider alias=\"business\" slidertitle=\"Business\"][/rev_slider]		\n                            <a href=\"\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/doctor-talking-their-clinic.jpg);\"></a>\n                                                            <a href=\"https://www.nursingjobsuk.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-12.png\" /></a>\n                                                        <h4><a href=\"\">Nursing Jobs uk</a></h4>\n                            Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/nursing-jobs-uk/\">Read more</a>\n                            <a href=\"\" style=\"background-image: url(http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/group-students-happy-be-back-university-scaled.jpg);\"></a>\n                                                            <a href=\"https://comparestudyabroad.co.uk/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" /></a>\n                                                        <h4><a href=\"\">Study Abroad UK</a></h4>\n                            In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.\n                                <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/case-study/study-abroad-uk/\">Read more</a>\n        <h3 data-wow-delay=\"ms\">\n            Ealoor Group of Companies                                \n            </h3>\n                    <h3>\n                British Council Approved Agent            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n                    <h3>\n                No Registration Charges            </h3>\n                    <h3>\n                Guidance on University & Course            </h3>\n                    <h3>\n                Assistance in the Application Process            </h3>\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\" data-wow-delay=\"160ms\">\n                Learn more about us\n    </a>\n        <img width=\"2560\" height=\"1709\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/multiethnic-group-young-cheerful-students-standing-outdoors-scaled.jpg\" alt=\"\" />            <a href=\"https://www.youtube.com/watch?v=HWI8Glo-BzY\">\n        </a>\n    We have <cite>10+</cite> years of experiences\n                        About us                                            \n	    <h3 data-wow-delay=\"ms\">\n            How we work with our clients .\n            </h3>\n		<p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards.</p>		\n            <img width=\"673\" height=\"278\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.24.51-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                British Council Approved Agent            </h3>\n            <img width=\"1104\" height=\"320\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/02/WhatsApp-Image-2022-02-02-at-8.19.53-PM.jpeg\" alt=\"\" />        \n                    <h3>\n                REC Membership            </h3>\n                        Sucsess Stories                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n        <h5 data-wow-delay=\"ms\">\n            International Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2019-09-24-at-6.51.14-AM-215x215.jpeg\" width=\"215\" height=\"215\" alt=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" title=\"WhatsApp-Image-2019-09-24-at-6.51.14-AM\" />                                    \n                                    Ealoor consultancy provides the most efficient and excellent service in all procedures of overseas admission. Friendly approach and experienced advices helps to achieve dream of every person who wishes to go abroad.                                \n                                    <h3>Neethu Varghese</h3>\n                                    MSc Public Health\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/shawn-215x215.png\" width=\"215\" height=\"215\" alt=\"shawn\" title=\"shawn\" />                                    \n                                    Hi, My name is Shawn Biju. After my plus two studies I was planning to study radiography in the UK. For that I contacted Ealoor Consultancy. They helped me a lot to achieve my dream.                                 \n                                    <h3>Shawn Biju</h3>\n                                    Diagnostic Radiography\n        <h5 data-wow-delay=\"ms\">\n            Nursing Students\n            </h5>\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/vimal_350x350_acf_cropped-215x215.png\" width=\"215\" height=\"215\" alt=\"vimal_350x350_acf_cropped\" title=\"vimal_350x350_acf_cropped\" />                                    \n                                    I am thankful to Nursing Jobs UK / Ealoor Consultancy for fulfilling my dream. It is my great privilege to introduce Nursing Jobs UK to upcoming nurses who are planning to migrate to UK,                                 \n                                    <h3>Vimal T S</h3>\n                                    RGN |Central Manchester Foundation Trust\n                                        <img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/himaja-215x215.png\" width=\"215\" height=\"215\" alt=\"himaja\" title=\"himaja\" />                                    \n                                    I am really happy to share my experience with the team of nursing jobs UK,they are really very supportive,friendly and gives perfect solutions to our problems.                                 \n                                    <h3>Himaja Pavani</h3>\n                                    RGN | Central Manchester Foundation Trust\n        <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/testimonials-v-4/\" data-wow-delay=\"ms\">\n                View All\n    </a>\n                        Testimonils                                            \n	    <h3 data-wow-delay=\"ms\">\n            What our clients says\n            </h3>\n                                “\n                                                                        Ealoor Consultancy UK Ltd has been assisting us to recruit overseas nurses for the past several years. They provide good quality nurses who have passed IELTS from India and other countries. We are extremely happy with the communication skills and experience of their candidates. They assist candidates to obtain NMC Decision Letter as well as to process Visa applications which helps to make whole the placement a lot quicker. I am happy to recommend them to healthcare organisations who are looking for fast and efficient nurses recruitment.\n                                    <h3>    \n                                        Four Seasons Health Care                                    </h3>\n                        Latest News                                            \n	    <h3 data-wow-delay=\"ms\">\n            We’re here to share latest news and events. \n            </h3>\n		<p>Follow our latest news and thoughts which focuses exclusively on  abroad study.</p>		\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/perm_post1-1.png\" width=\"462\" height=\"266\" alt=\"perm_post1-1\" title=\"perm_post1-1\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\" title=\"RGN RECRUITMENT -NMC PINNED CANDIDATES\">RGN RECRUITMENT -NMC PINNED CANDIDATES</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/rgn-recruitment-nmc-pinned-candidates/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/DIRECT-INTERVIEW.png\" width=\"462\" height=\"308\" alt=\"DIRECT-INTERVIEW\" title=\"DIRECT-INTERVIEW\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\" title=\"Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)\">Nurses to the UK – Direct Interview(EAST KENT NHS HOSPITAL)</a></h3>\n                                                            January 19, 2022\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2022/01/19/nurses-to-the-uk-direct-intervieweast-kent-nhs-hospital/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/info-april-600x373.png\" width=\"600\" height=\"373\" alt=\"info-april\" title=\"info-april\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\" title=\"Strategy for Norway&#8217;s Peion to Fund Global.\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                                            November 5, 2019\n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/2019/11/05/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                        \n                                    </a>\n                            <a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\"><img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/update-blog3-600x373.jpg\" width=\"600\" height=\"373\" alt=\"update-blog3\" title=\"update-blog3\" /></a>\n                        <h3><a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\" title=\"You can use it for any kind website like.\">You can use it for any kind website like.</a></h3>\n                                                            November 5, 2019\n                                    As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                                \n                                    <a href=\"http://demoweblinks.in/ealoorconsultancy/?p=161\">\n                                            Read more                                        \n                                    </a>\n        <h3 data-wow-delay=\"ms\">\n            FAQs\n            </h3>\n                    <a>\n                                                                        How can I work as a Registered nurse in the UK ?                                 \n                    </a>\n                <p>At the initial stage of the application process, you need to pass either IELTS/OET. For IELTS you will require a minimum score of 7 in all modules....</p>\n                    <a>\n                                                                        What will I need to pay for ?                                \n                    </a>\n                <p>Majority of the expense paid by the international nurse towards the NMC registration is refunded by the employer upon arrival in the UK. IELTS fee,...</p>\n                    <a>\n                                                                        What will be my pay scale ?                          \n                    </a>\n                <p>A Band 5, registered nurse salary ranges from £24,214 to £30,112 per annum depending on NHS employer. With a private employer, the payment can go f...</p>\n                    <a>\n                                                                        Can I get CBT training materials ?                               \n                    </a>\n                <p>Yes, we provide free training materials for CBT. It consists of 120 multiple choice questions that cover all the main 4 sections and questions spec...</p>\n    	    		<h3>QUICK CONTACT</h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/ealoorconsultancy/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.5\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"NursingJobsUK\">NursingJobsUK</option><option value=\"Study Abroad\">Study Abroad</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2022-02-24 11:04:54','2022-02-24 11:04:54','',9,'http://demoweblinks.in/ealoorconsultancy/?p=9022',0,'revision','',0),(9023,1,'2022-02-24 11:07:57','2022-02-24 11:07:57','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n                        <img width=\"2560\" height=\"1707\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-scaled.jpg\" alt=\"\" />            		\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-24 11:07:57','2022-02-24 11:07:57','',26,'http://demoweblinks.in/ealoorconsultancy/?p=9023',0,'revision','',0),(9024,1,'2022-02-24 11:07:57','2022-02-24 11:07:57','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 18 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 5000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.4 - 23-01-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2021, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n                        <img width=\"2560\" height=\"1707\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-scaled.jpg\" alt=\"\" />            		\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-24 11:07:57','2022-02-24 11:07:57','',26,'http://demoweblinks.in/ealoorconsultancy/?p=9024',0,'revision','',0),(9025,1,'2022-02-24 11:07:57','2022-02-24 11:07:57','<h3 data-wow-delay=\"ms\">\n                            <i></i>\n            About Us\n            </h3>\n		<p>Ealoor Group of Companies is a prominent name in the field of International Healthcare Recruitment and Education. With over 20 years of expertise in the field, we have now become the forefront in assisting NHS, private hospitals, private nursing homes and other private healthcare organizations in the UK for their staffing solutions. We also provide professional consulting to our employers to run the international recruitment process on profitability. Placing over 6000 healthcare professionals, we are the “go-to” provider for any international nurse looking for an opportunity in the UK.</p><p>Having multiple offices across the world, combined with a competent and committed team, has helped us to be one of the top recruitment consultants in the UK. A track record of our consistent success is evidenced by our increased number of associations with the NHS and other healthcare sectors through the years, adding to the numerous memberships and awards. Ealoor has won:</p>		\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/elementor/thumbs/cheerful-students-standing-waving-outdoors-scaled-pjgwbw5fxqvbsvrhvuygbz01a7aslr8wx1ie4ejet4.jpg\" title=\"Cheerful students standing and waving outdoors.\" alt=\"Image of multiethnic group of young cheerful students standing and waving outdoors. Looking at camera.\" />															\n	            		Awarded Supplier 2019-2023, International Recruitment of Clinical Healthcare Professionals	            	\n	            		British Council Approved Agent	            	\n	            		Best International Recruitment Award, 2019 for Outstanding professionalism and trustworthiness in the recruitment of healthcare professionals to the UK.	            	\n	            		REC Membership	            	\n            In 2002, Ealoor Consultancy UK Ltd, started with a motto of “Changing lives”, assisting the international students and healthcare professionals to find opportunities in the UK, is now an international name, Ealoor Group of Companies, with multiple offices across the world and widespread services in the following:\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">STUDY ABROAD UK</a>\n            </h6>\n        <h6 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">NURSING JOB UK</a>\n            </h6>\n                        <img width=\"2560\" height=\"1707\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cheerful-students-jumping-excitement-scaled.jpg\" alt=\"\" />            		\n        <h4 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001014959/https://www.nursingjobsuk.co.uk/\">INTERNATIONAL RECRUITMENT</a>\n            </h4>\n                        <h3>    \n                            OSCE TRAINING                            </h3>\n                        <ul><li>Started the first-ever private OSCE training for nurses</li>\n<li>Training conducted for NHS Hospitals</li>\n<li>Over 100 batch of training completed</li>\n<li>Batch and one to one session conducted every month</li>\n<li>99% pass rate for all our students</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200925014851/https://www.nursingjobsuk.co.uk/training/osce-training\"></a>\n                        <h3>    \n                            CBT TRAINING                        </h3>\n                        <ul><li>Over 2500 questions and answers available</li>\n<li>5 days of completely free training trial</li>\n<li>Mock tests available</li>\n<li>Most widely used among international nurses</li></ul>\n                                                    <a href=\"https://web.archive.org/web/20200914151351/https://www.nursingjobsuk.co.uk/training/cbt-online-practice\"></a>\n                        <h3>    \n                            NMC SUPPORT                        </h3>\n                        <ul><li>Revalidation Assistance</li>\n<li>Overseas NMC Registration Assistance</li>\n</ul>\n        <h3 data-wow-delay=\"ms\">\n            <a href=\"https://web.archive.org/web/20201001121105/http://ealoorconsultancy.co.uk/\">EALOOR STUDY ABROAD</a>\n                            <i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                    <i></i>\n                </i>\n            </h3>\n		<p>In the field of International Education division, Ealoor Study Abroad has already marked its invaluable place by placing over 1000 students to different Universities across the UK. With partnership over 18 Universities in the UK, we stand as one of the British Council approved agents.</p>		\n        <h3 data-wow-delay=\"ms\">\n                            <i></i>\n            WHOM WE RECRUIT?\n            </h3>\n		<p>Strictly adhering to the NHS code of conduct, we take immense pride in providing highly skilled and qualified healthcare professionals to our clients. We recruit for the following positions:</p>		\n	            		Registered General Nurses	            	\n	            		Mental Health Nurses	            	\n	            		Paediatrics Nurses	            	\n	            		Community Nurses	            	\n	            		Health Visitors	            	\n	            		Allied Health Professionals	            	\n	            		Emergency Nurse Practitioners	            	\n	            		Paramedics	            	\n	            		GP’s	            	\n	            		Radiographers 	            	\n                        OUR CLIENTS                                            \n	    <h3 data-wow-delay=\"ms\">\n            </h3>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.14-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.13-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.12-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-8.02.07-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.56-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-2.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.55-PM-1.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.54-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.53-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.52-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.51-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.50-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.48-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"165\" height=\"95\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/WhatsApp-Image-2022-01-24-at-7.55.47-PM.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2019/12/client-05.png\" alt=\"\" />                                                                    </a>','About','','inherit','closed','closed','','26-revision-v1','','','2022-02-24 11:07:57','2022-02-24 11:07:57','',26,'http://demoweblinks.in/ealoorconsultancy/?p=9025',0,'revision','',0),(9028,1,'2022-03-02 05:08:11','2022-03-02 05:08:11','<a href=\"https://demo.casethemes.net/consultio-finance4/\">            <img width=\"168\" height=\"87\" src=\"http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/logo-11.png\" alt=\"\" />        </a>    		\n		<p>Our International Services team can provide assistance to eligible candidates overseas for securing the right visa to study or work in the UK.</p>		\n        <a href=\"#\" data-wow-delay=\"ms\">\n                About Us\n    </a>\n        <h3 data-wow-delay=\"ms\">\n            Newsletters\n            </h3>\n			<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n	   		    	<form action=\"http://demoweblinks.in/ealoorconsultancy/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n		    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n		    		<label>Your mail address</label>\n		    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n		    		<input type=\"submit\" value=\"Subscribe\">\n		    </form>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n        <h3 data-wow-delay=\"ms\">\n            Official Info:\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       Carnival Infopark, Phase II, 1st Floor, Kakkandu, Cochin, Kerala, India, 682 030                    \n                           </li>\n                    <li>\n                       +44 161 456 7166, 0484 4017565 Mob No: +91 9995399366/ +91 9995205566 WhatsApp: +91 9995377366                    \n                           </li>\n                    <li>\n                       info@ealoorconsultancy.co.uk                    \n                           </li>\n            </ul>\n        <h3 data-wow-delay=\"ms\">\n            Quik Links\n            </h3>\n			    <ul>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy\">\n                                                                                                                                Home                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/about/\">\n                                                                                                                                About Us                                                                    </a>\n                </li>\n                        <li>\n                    <a href=\"http://demoweblinks.in/ealoorconsultancy/index.php/contact-v-4/\">\n                                                                                                                                Contact us                                                                    </a>\n                </li>\n            </ul>\n		2021 © All rights reserved by <a href=\"https://amaeka.com/\" target=\"_blank\" rel=\"nofollow noopener\">Amaeka Technologies</a>		\n                                    <a href=\"https://www.facebook.com/EaloorStudyAbroad\">\n                                                        </a>\n                                                <a href=\"https://www.linkedin.com/company/ealoor-studyabroad-uk-ltd/\">\n                                                        </a>\n                                                <a href=\"https://www.instagram.com/ealoor_study_abroad/?hl=en\">\n                                                        </a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2022-03-02 05:08:11','2022-03-02 05:08:11','',20,'http://demoweblinks.in/ealoorconsultancy/?p=9028',0,'revision','',0),(9037,1,'2022-03-29 11:09:44','2022-03-29 11:09:44','http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cropped-logo-11.png','cropped-logo-11.png','','inherit','','closed','','cropped-logo-11-png','','','2022-03-29 11:09:44','2022-03-29 11:09:44','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cropped-logo-11.png',0,'attachment','image/png',0),(9038,1,'2022-03-29 11:10:03','2022-03-29 11:10:03','http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cropped-logo-11-1.png','cropped-logo-11-1.png','','inherit','','closed','','cropped-logo-11-1-png','','','2022-03-29 11:10:03','2022-03-29 11:10:03','',0,'http://demoweblinks.in/ealoorconsultancy/wp-content/uploads/2022/01/cropped-logo-11-1.png',0,'attachment','image/png',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wp_revslider_navigations` VALUES (1,'Case Theme Thumbnail1','case_theme_thumb1','thumbs','.case_theme_thumb1 .tp-thumb { \n      opacity:1\n  }\n.case_theme_thumb1 .tp-thumb-img-wrap {\n  border-radius:##radius##;\n  padding:##border##px;\n  display:inline-block;\n  background-color:##bg##;\n  width:100%;\n  height:100%;\n  position:relative;\n  margin:0px;\n  box-sizing:border-box;\n    transition:all 0.3s;\n    -webkit-transition:all 0.3s;\n}\n.case_theme_thumb1 .tp-thumb-image {\n   padding:##border##px; \n   border-radius:##radius##;\n   display:block;\n   box-sizing:border-box;\n   position:relative;\n    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);\n  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);\n  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);\n }  \n\n\n.case_theme_thumb1 .tp-thumb.rs-touchhover .tp-thumb-img-wrap,\n.case_theme_thumb1 .tp-thumb.selected .tp-thumb-img-wrap {\n  \n\n  background: -moz-linear-gradient(top, ##ht## 0%, ##hb## 100%);\n  background: -webkit-gradient(left top, left bottom, color-stop(0%, ##ht##, color-stop(100%, ##hb##)));\n  background: -webkit-linear-gradient(top, ##ht## 0%, ##hb## 100%);\n  background: -o-linear-gradient(top, ##ht## 0%, ##hb## 100%);\n  background: -ms-linear-gradient(top, ##ht## 0%, ##hb## 100%);\n  background: linear-gradient(to bottom, ##ht## 0%, ##hb## 100%);\n }\n\n','<span class=\\\"tp-thumb-img-wrap\\\">\n  <span class=\\\"tp-thumb-image\\\"></span>\n</span>\n','{\"dim\":{\"width\":\"90\",\"height\":\"90\"},\"placeholders\":{\"radius\":{\"title\":\"Radius\",\"type\":\"custom\",\"data\":\"50%\"},\"border\":{\"title\":\"Border\",\"type\":\"custom\",\"data\":\"3\"},\"bg\":{\"title\":\"Background\",\"type\":\"color\",\"data\":\"rgba(0,0,0,0.25)\"},\"ht\":{\"title\":\"Hover-Top\",\"type\":\"color\",\"data\":\"#ffffff\"},\"hb\":{\"title\":\"Hover-Bottom\",\"type\":\"color\",\"data\":\"#878787\"}},\"presets\":\"\",\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/young-female-surgeon-with-medical-team-back-before-surgery-scaled.jpg\",\"imageId\":8884,\"imageLib\":\"medialibrary\",\"imageWidth\":2560,\"imageHeight\":1707,\"imageRatio\":1.4997070884592853534655887415283359587192535400390625},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"nav\":{\"thumbs\":{\"presets\":{\"radius\":\"50%\",\"radius-def\":false,\"border\":\"3\",\"border-def\":false,\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"ht\":\"#ffffff\",\"ht-def\":false,\"hb\":\"#878787\",\"hb-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"305px\",\"e\":true},\"n\":{\"v\":\"305px\"},\"t\":{\"v\":\"245px\",\"e\":true},\"m\":{\"v\":\"314px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"v\":\"-3px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"4px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Get a Better Career\\nwith Nursing jobs UK \",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Without consulting, plans stay as plans.\",\"alias\":\"Sub-title\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\"},\"t\":{\"v\":\"113px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-phone-call-1 space-right\\\"><\\/i>Nursing jobs UK\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"109px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":13},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/www.nursingjobsuk.co.uk\\/\"}],\"inactive_actions\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"4\":{\"text\":\"\",\"alias\":\"Image-4\",\"uid\":4,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_7363083.png\",\"imageId\":8999,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"originalWidth\":1294,\"originalHeight\":1295,\"aspectRatio\":{\"d\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"n\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"t\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"m\":{\"v\":0.99922779922779925154685543020605109632015228271484375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1080px\",\"e\":true},\"n\":{\"v\":\"899px\"},\"t\":{\"v\":\"324px\",\"e\":true},\"m\":{\"v\":\"172px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"398px\",\"e\":true},\"n\":{\"v\":\"331px\"},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"397px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"5\":{\"text\":\"\",\"alias\":\"Image-5\",\"uid\":5,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_1913293.png\",\"imageId\":9000,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"originalWidth\":441,\"originalHeight\":504,\"aspectRatio\":{\"d\":{\"v\":0.875},\"n\":{\"v\":0.875},\"t\":{\"v\":0.875},\"m\":{\"v\":0.875}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1120px\",\"e\":true},\"n\":{\"v\":\"932px\"},\"t\":{\"v\":\"369px\",\"e\":true},\"m\":{\"v\":\"214px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"399px\",\"e\":true},\"n\":{\"v\":\"332px\"},\"t\":{\"v\":\"80px\",\"e\":true},\"m\":{\"v\":\"398px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"6\":{\"text\":\"\",\"alias\":\"Image-6\",\"uid\":6,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_44729.png\",\"imageId\":9001,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"41px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"41px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"29px\",\"e\":true},\"m\":{\"v\":\"29px\",\"e\":true}},\"originalWidth\":1280,\"originalHeight\":901,\"aspectRatio\":{\"d\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"n\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"t\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"m\":{\"v\":1.420643729189789095102014471194706857204437255859375}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"1156px\",\"e\":true},\"n\":{\"v\":\"962px\"},\"t\":{\"v\":\"411px\",\"e\":true},\"m\":{\"v\":\"254px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"401px\",\"e\":true},\"n\":{\"v\":\"333px\"},\"t\":{\"v\":\"81px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.5.14\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/slider4-1.jpg\",\"imageId\":8524,\"imageLib\":\"medialibrary\",\"imageWidth\":1170,\"imageHeight\":450,\"imageRatio\":2.600000000000000088817841970012523233890533447265625},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"nav\":{\"thumbs\":{\"presets\":{\"radius\":\"50%\",\"radius-def\":false,\"border\":\"3\",\"border-def\":false,\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"ht\":\"#ffffff\",\"ht-def\":false,\"hb\":\"#878787\",\"hb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"365px\",\"e\":true},\"n\":{\"v\":\"365px\"},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Leading Study Abroad Company\",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"90px\"},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"startRelative\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-phone-call-1 space-right\\\"><\\/i>COMPARE STUDY ABROAD\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/comparestudyabroad.co.uk\\/\"}],\"inactive_actions\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"12\":{\"text\":\"<a class=\\\"ct-video-button white border-effect video-size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><\\/a>\",\"alias\":\"Video\",\"uid\":12,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"rotationY\":\"360deg\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.5.14\"}'),(3,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/01\\/portrait-group-students-celebrating-their-graduation.jpg\",\"imageId\":8883,\"imageLib\":\"medialibrary\",\"imageWidth\":6939,\"imageHeight\":4630,\"imageRatio\":1.498704103671706366895932660554535686969757080078125},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"nav\":{\"thumbs\":{\"presets\":{\"radius\":\"50%\",\"radius-def\":false,\"border\":\"0\",\"border-def\":true,\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"ht\":\"#ffffff\",\"ht-def\":false,\"hb\":\"#878787\",\"hb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}}}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"305px\",\"e\":true},\"n\":{\"v\":\"305px\"},\"t\":{\"v\":\"245px\",\"e\":true},\"m\":{\"v\":\"286px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"485px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-4px\",\"e\":true},\"n\":{\"v\":\"-4px\"},\"t\":{\"v\":\"-4px\"},\"m\":{\"v\":\"-29px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Leading Study \\nAbroad Company\\n\",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"2\":{\"text\":\"We champion the bold to achieve the extraordinary.\",\"alias\":\"Sub-title\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"360px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\"},\"t\":{\"v\":\"113px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-contact-book space-right\\\"><\\/i>  Study in UK\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"v\":\"1px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/comparestudyabroad.co.uk\\/\"}],\"inactive_actions\":[]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"7\":{\"text\":\"\",\"alias\":\"Image-7\",\"uid\":7,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_7363083.png\",\"imageId\":8999,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"34px\",\"e\":true}},\"originalWidth\":1294,\"originalHeight\":1295,\"aspectRatio\":{\"d\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"n\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"t\":{\"v\":0.99922779922779925154685543020605109632015228271484375},\"m\":{\"v\":0.99922779922779925154685543020605109632015228271484375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"565px\",\"e\":true},\"n\":{\"v\":\"605px\",\"e\":true},\"t\":{\"v\":\"330px\",\"e\":true},\"m\":{\"v\":\"324px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"256px\",\"e\":true},\"n\":{\"v\":\"251px\",\"e\":true},\"t\":{\"v\":\"200px\",\"e\":true},\"m\":{\"v\":\"249px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"group\":{\"puid\":\"0\",\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"8\":{\"text\":\"\",\"alias\":\"Image-8\",\"uid\":8,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_1913293.png\",\"imageId\":9000,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"31px\",\"e\":true},\"n\":{\"v\":\"25px\"},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"31px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"35px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"35px\",\"e\":true},\"m\":{\"v\":\"35px\",\"e\":true}},\"originalWidth\":441,\"originalHeight\":504,\"aspectRatio\":{\"d\":{\"v\":0.875},\"n\":{\"v\":0.875},\"t\":{\"v\":0.875},\"m\":{\"v\":0.875}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"610px\",\"e\":true},\"n\":{\"v\":\"646px\",\"e\":true},\"t\":{\"v\":\"372px\",\"e\":true},\"m\":{\"v\":\"363px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"257px\",\"e\":true},\"n\":{\"v\":\"253px\",\"e\":true},\"t\":{\"v\":\"201px\",\"e\":true},\"m\":{\"v\":\"250px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"9\":{\"text\":\"\",\"alias\":\"Image-9\",\"uid\":9,\"media\":{\"imageUrl\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2022\\/02\\/kindpng_44729.png\",\"imageId\":9001,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"41px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"41px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"29px\",\"e\":true},\"m\":{\"v\":\"29px\",\"e\":true}},\"originalWidth\":1280,\"originalHeight\":901,\"aspectRatio\":{\"d\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"n\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"t\":{\"v\":1.420643729189789095102014471194706857204437255859375},\"m\":{\"v\":1.420643729189789095102014471194706857204437255859375}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"649px\",\"e\":true},\"n\":{\"v\":\"680px\",\"e\":true},\"t\":{\"v\":\"410px\",\"e\":true},\"m\":{\"v\":\"398px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"257px\",\"e\":true},\"n\":{\"v\":\"255px\",\"e\":true},\"t\":{\"v\":\"201px\",\"e\":true},\"m\":{\"v\":\"253px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"#\"}],\"inactive_actions\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.5.14\"}'),(4,2,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider1.jpg\",\"imageLib\":\"medialibrary\",\"imageId\":7099},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"version\":\"6.4.0\"}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"305px\",\"e\":true},\"n\":{\"v\":\"305px\"},\"t\":{\"v\":\"245px\",\"e\":true},\"m\":{\"v\":\"220px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.4.0\"},\"1\":{\"text\":\"Get Mentored\\nBy our Company.\",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"Without consulting, plans stay as plans.\",\"alias\":\"Sub-title\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\"},\"t\":{\"v\":\"113px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-phone-call-1 space-right\\\"><\\/i>Free Consultation\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/contact\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.4.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.0\"}'),(5,2,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider2.jpg\",\"imageLib\":\"medialibrary\",\"imageId\":7134},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.4.0\"}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"365px\",\"e\":true},\"n\":{\"v\":\"365px\"},\"t\":{\"v\":\"285px\",\"e\":true},\"m\":{\"v\":\"260px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.4.0\"},\"1\":{\"text\":\"Belonging, Support\\nEquity at Work\",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"90px\"},\"t\":{\"v\":\"90px\"},\"m\":{\"v\":\"85px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"startRelative\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"80px\",\"e\":true},\"n\":{\"v\":\"80px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-phone-call-1 space-right\\\"><\\/i>Free Consultation\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50\"},\"m\":{\"v\":\"50\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"startRelative\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/contact\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.4.0\"},\"12\":{\"text\":\"<a class=\\\"ct-video-button white border-effect video-size2\\\" href=\\\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\\\"><i class=\\\"fac fac-play\\\"><\\/i><\\/a>\",\"alias\":\"Video\",\"uid\":12,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"rotationY\":\"360deg\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"m\":{\"v\":\"20px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.0\"}'),(6,2,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"http:\\/\\/demoweblinks.in\\/ealoorconsultancy\\/wp-content\\/uploads\\/2021\\/03\\/bg-slider3.jpg\",\"imageLib\":\"medialibrary\",\"imageId\":7135},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"timeline\":{\"transition\":[\"fade\"],\"slots\":[0],\"duration\":[1000],\"easeIn\":[\"default\"],\"easeOut\":[\"default\"],\"rotation\":[0]},\"panzoom\":{\"set\":true,\"fitEnd\":\"112%\"},\"nav\":{\"thumbs\":{\"presets\":{\"radius\":\"50%\",\"radius-def\":false,\"border\":\"0\",\"border-def\":true,\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"ht\":\"#ffffff\",\"ht-def\":false,\"hb\":\"#878787\",\"hb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.4.0\"}','{\"0\":{\"text\":\"\",\"alias\":\"Content\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"460px\",\"e\":true},\"m\":{\"v\":\"460px\"}},\"height\":{\"d\":{\"v\":\"305px\",\"e\":true},\"n\":{\"v\":\"305px\"},\"t\":{\"v\":\"245px\",\"e\":true},\"m\":{\"v\":\"240px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667},\"n\":{\"v\":1.6666666666666667},\"t\":{\"v\":1.6666666666666667},\"m\":{\"v\":1.6666666666666667}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"20px\"}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\",\"version\":\"6.4.0\"},\"1\":{\"text\":\"Leading Company\\nScale Agile\",\"alias\":\"Title\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":700,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":700},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"72px\",\"e\":true},\"n\":{\"v\":\"72px\"},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"2\":{\"text\":\"We champion the bold to achieve the extraordinary.\",\"alias\":\"Sub-title\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"360px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"170px\",\"e\":true},\"n\":{\"v\":\"170px\"},\"t\":{\"v\":\"113px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":900,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":900},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"32px\",\"e\":true},\"n\":{\"v\":\"32px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\"<i class=\\\"flaticonv7 flaticonv7-contact-book space-right\\\"><\\/i>Contact us\",\"alias\":\"Button\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"attributes\":{\"classes\":\"btn-icon-xl rev-btn-animate1\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.inOut\",\"speed\":\"900\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":900}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,28,0,28],\"e\":true},\"n\":{\"v\":[0,28,0,28],\"e\":false},\"t\":{\"v\":[0,28,0,28],\"e\":false},\"m\":{\"v\":[0,20,0,20],\"e\":true}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"16px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\"}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"65px\",\"e\":true},\"n\":{\"v\":\"65px\"},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"v\":\"55px\"}},\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"backgroundColor\":\"#007ef2\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-finance4\\/contact\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\",\"version\":\"6.4.0\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.0\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,1,'{\"version\":\"6.4.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"version\":\"6.4.0\"}'),(2,2,'{\"version\":\"6.4.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"version\":\"6.4.0\"}');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

--
-- Table structure for table `wp_sbi_feed_caches`
--

DROP TABLE IF EXISTS `wp_sbi_feed_caches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_feed_caches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cache_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cache_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `cron_update` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  `last_updated` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_feed_caches`
--

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

--
-- Table structure for table `wp_sbi_feeds`
--

DROP TABLE IF EXISTS `wp_sbi_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_feeds` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `feed_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `author` bigint(20) unsigned NOT NULL DEFAULT '1',
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `author` (`author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_feeds`
--

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

--
-- Table structure for table `wp_sbi_instagram_feed_locator`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_feed_locator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `wp_sbi_instagram_feeds_posts`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_feeds_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `feed_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `hashtag` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`record_id`),
  KEY `hashtag` (`hashtag`(191)),
  KEY `feed_id` (`feed_id`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_feeds_posts`
--

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

--
-- Table structure for table `wp_sbi_instagram_posts`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `media_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sizes` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT '0.00',
  `images_done` tinyint(1) NOT NULL DEFAULT '0',
  `last_requested` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_posts`
--

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

--
-- Table structure for table `wp_sbi_sources`
--

DROP TABLE IF EXISTS `wp_sbi_sources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_sources` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `account_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `account_type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `privilege` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `access_token` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `username` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `info` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `error` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `expires` datetime NOT NULL,
  `last_updated` datetime NOT NULL,
  `author` bigint(20) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `account_type` (`account_type`(191)),
  KEY `author` (`author`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_sources`
--

LOCK TABLES `wp_sbi_sources` WRITE;
/*!40000 ALTER TABLE `wp_sbi_sources` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_sbi_sources` 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 (161,1,0),(161,4,0),(161,6,0),(161,8,0),(446,12,0),(448,12,0),(569,11,0),(571,19,0),(573,11,0),(575,18,0),(577,13,0),(579,19,0),(581,11,0),(583,13,0),(645,14,0),(647,14,0),(649,12,0),(651,12,0),(1214,17,0),(1217,17,0),(1738,19,0),(1740,18,0),(1742,11,0),(1766,19,0),(1831,10,0),(1833,10,0),(1835,10,0),(1837,10,0),(2331,16,0),(2439,20,0),(2440,9,0),(2441,21,0),(2442,15,0),(2625,12,0),(2627,12,0),(2758,42,0),(2763,42,0),(2765,42,0),(2780,42,0),(2785,42,0),(2787,42,0),(3872,17,0),(3876,17,0),(4171,10,0),(4174,10,0),(4177,10,0),(4931,14,0),(5357,16,0),(8017,17,0),(8018,28,0),(8019,28,0),(8020,28,0),(8021,28,0),(8022,23,0),(8023,23,0),(8024,30,0),(8025,30,0),(8026,30,0),(8027,30,0),(8028,30,0),(8029,23,0),(8030,22,0),(8031,23,0),(8032,22,0),(8033,22,0),(8034,22,0),(8035,27,0),(8036,27,0),(8037,27,0),(8038,27,0),(8039,27,0),(8040,27,0),(8041,22,0),(8042,27,0),(8043,26,0),(8044,26,0),(8046,26,0),(8047,26,0),(8048,26,0),(8049,29,0),(8050,29,0),(8051,29,0),(8052,29,0),(8053,29,0),(8054,24,0),(8055,24,0),(8056,24,0),(8057,24,0),(8058,24,0),(8059,24,0),(8060,24,0),(8061,24,0),(8062,24,0),(8063,24,0),(8064,24,0),(8065,24,0),(8072,24,0),(8073,24,0),(8074,24,0),(8075,24,0),(8076,24,0),(8077,24,0),(8078,24,0),(8079,24,0),(8080,24,0),(8081,23,0),(8082,23,0),(8083,23,0),(8084,23,0),(8085,23,0),(8086,23,0),(8087,23,0),(8088,23,0),(8089,23,0),(8091,23,0),(8092,23,0),(8093,23,0),(8094,23,0),(8095,23,0),(8096,23,0),(8100,23,0),(8101,23,0),(8102,23,0),(8103,23,0),(8104,23,0),(8105,23,0),(8106,23,0),(8107,23,0),(8108,23,0),(8109,23,0),(8110,22,0),(8111,22,0),(8112,22,0),(8113,22,0),(8115,22,0),(8116,22,0),(8117,22,0),(8118,22,0),(8119,22,0),(8120,22,0),(8121,22,0),(8122,22,0),(8123,22,0),(8124,22,0),(8125,23,0),(8126,23,0),(8127,23,0),(8128,22,0),(8129,22,0),(8132,22,0),(8133,22,0),(8134,22,0),(8135,22,0),(8136,22,0),(8137,22,0),(8138,22,0),(8139,22,0),(8140,22,0),(8141,22,0),(8142,22,0),(8143,22,0),(8144,22,0),(8145,22,0),(8146,22,0),(8147,22,0),(8150,22,0),(8151,22,0),(8152,22,0),(8153,22,0),(8157,22,0),(8159,22,0),(8160,22,0),(8161,22,0),(8162,22,0),(8163,22,0),(8164,22,0),(8165,22,0),(8166,22,0),(8167,22,0),(8168,22,0),(8169,22,0),(8170,22,0),(8171,22,0),(8172,22,0),(8173,22,0),(8182,22,0),(8183,22,0),(8184,23,0),(8185,23,0),(8186,22,0),(8187,23,0),(8188,28,0),(8189,28,0),(8190,28,0),(8191,28,0),(8192,22,0),(8193,27,0),(8194,27,0),(8195,27,0),(8196,27,0),(8197,27,0),(8198,27,0),(8199,27,0),(8203,34,0),(8204,34,0),(8205,14,0),(8206,14,0),(8207,34,0),(8208,34,0),(8209,34,0),(8210,34,0),(8211,10,0),(8212,10,0),(8213,22,0),(8214,22,0),(8215,22,0),(8216,22,0),(8218,26,0),(8219,26,0),(8221,22,0),(8222,22,0),(8223,22,0),(8224,22,0),(8225,22,0),(8226,22,0),(8227,22,0),(8228,22,0),(8229,22,0),(8230,22,0),(8235,22,0),(8236,22,0),(8237,22,0),(8238,22,0),(8239,22,0),(8240,22,0),(8241,26,0),(8242,26,0),(8243,26,0),(8244,22,0),(8245,22,0),(8246,22,0),(8247,22,0),(8248,22,0),(8249,29,0),(8250,29,0),(8251,29,0),(8252,29,0),(8253,29,0),(8254,22,0),(8255,23,0),(8256,23,0),(8257,23,0),(8258,23,0),(8259,23,0),(8260,23,0),(8261,23,0),(8262,23,0),(8263,24,0),(8264,24,0),(8265,24,0),(8266,24,0),(8267,24,0),(8268,24,0),(8269,24,0),(8270,24,0),(8271,24,0),(8272,24,0),(8278,23,0),(8279,23,0),(8280,23,0),(8281,23,0),(8282,23,0),(8283,23,0),(8284,23,0),(8288,23,0),(8289,23,0),(8290,23,0),(8291,23,0),(8295,24,0),(8296,22,0),(8297,22,0),(8298,22,0),(8301,22,0),(8304,22,0),(8305,22,0),(8306,22,0),(8307,22,0),(8309,22,0),(8311,22,0),(8312,22,0),(8313,22,0),(8314,22,0),(8315,22,0),(8316,22,0),(8317,22,0),(8318,22,0),(8319,22,0),(8320,23,0),(8321,24,0),(8322,24,0),(8323,24,0),(8324,24,0),(8325,24,0),(8326,24,0),(8327,24,0),(8328,24,0),(8329,23,0),(8330,23,0),(8331,23,0),(8332,23,0),(8333,23,0),(8334,22,0),(8335,22,0),(8336,22,0),(8337,22,0),(8338,22,0),(8339,16,0),(8343,16,0),(8357,20,0),(8358,41,0),(8359,39,0),(8360,43,0),(8361,22,0),(8362,26,0),(8363,22,0),(8364,23,0),(8365,23,0),(8367,22,0),(8368,22,0),(8369,23,0),(8370,22,0),(8371,27,0),(8372,27,0),(8373,27,0),(8374,27,0),(8375,27,0),(8376,27,0),(8379,4,0),(8379,5,0),(8379,6,0),(8379,7,0),(8379,8,0),(8379,36,0),(8381,13,0),(8382,38,0),(8383,38,0),(8384,38,0),(8385,38,0),(8386,38,0),(8387,38,0),(8388,22,0),(8389,22,0),(8390,22,0),(8391,22,0),(8393,26,0),(8394,26,0),(8395,26,0),(8396,26,0),(8398,22,0),(8399,22,0),(8400,22,0),(8401,22,0),(8402,22,0),(8403,22,0),(8404,22,0),(8405,22,0),(8406,22,0),(8407,22,0),(8412,22,0),(8413,22,0),(8414,22,0),(8415,22,0),(8416,22,0),(8417,22,0),(8418,22,0),(8419,22,0),(8420,22,0),(8421,26,0),(8422,26,0),(8423,26,0),(8424,26,0),(8425,22,0),(8426,22,0),(8427,22,0),(8428,22,0),(8429,22,0),(8430,29,0),(8431,29,0),(8432,29,0),(8433,29,0),(8434,29,0),(8435,22,0),(8436,23,0),(8437,23,0),(8438,23,0),(8439,23,0),(8440,23,0),(8441,23,0),(8442,23,0),(8443,23,0),(8444,23,0),(8445,23,0),(8446,23,0),(8447,24,0),(8448,24,0),(8449,24,0),(8450,24,0),(8451,24,0),(8452,24,0),(8453,24,0),(8454,24,0),(8455,24,0),(8456,24,0),(8461,24,0),(8462,24,0),(8463,24,0),(8464,24,0),(8465,24,0),(8467,23,0),(8468,23,0),(8469,23,0),(8470,23,0),(8471,23,0),(8472,23,0),(8473,23,0),(8474,23,0),(8475,23,0),(8476,23,0),(8477,23,0),(8481,23,0),(8482,23,0),(8483,23,0),(8484,23,0),(8488,24,0),(8489,22,0),(8490,22,0),(8491,22,0),(8492,22,0),(8495,22,0),(8496,22,0),(8497,22,0),(8498,22,0),(8502,22,0),(8503,22,0),(8504,22,0),(8505,16,0),(8512,44,0),(8514,44,0),(8515,44,0),(8516,44,0),(8636,44,0),(8672,44,0),(8677,45,0),(8679,46,0),(8779,33,0),(8786,33,0),(8953,44,0),(8956,44,0),(8957,44,0),(8959,47,0),(8960,44,0),(8961,44,0),(8962,44,0),(8992,44,0),(8993,44,0),(8994,44,0),(8995,44,0),(9004,48,0),(9005,48,0),(9006,48,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=49 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,0),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'post_tag','',0,1),(5,5,'post_tag','',0,1),(6,6,'post_tag','',0,1),(7,7,'post_tag','',0,1),(8,8,'post_tag','',0,1),(9,9,'case-study-category','',0,1),(10,10,'service-category','',0,9),(11,11,'portfolio-category','',0,4),(12,12,'service-category','',0,6),(13,13,'portfolio-category','',0,3),(14,14,'service-category','',0,5),(15,15,'case-study-category','',0,1),(16,16,'elementor_library_type','',0,5),(17,17,'elementor_library_type','',0,5),(18,18,'portfolio-category','',0,2),(19,19,'portfolio-category','',0,4),(20,20,'case-study-category','',0,2),(21,21,'case-study-category','',0,1),(22,22,'nav_menu','',0,155),(23,23,'nav_menu','',0,89),(24,24,'nav_menu','',0,56),(25,25,'nav_menu','',0,0),(26,26,'nav_menu','',0,19),(27,27,'nav_menu','',0,20),(28,28,'nav_menu','',0,8),(29,29,'nav_menu','',0,15),(30,30,'nav_menu','',0,5),(31,31,'category','',0,0),(32,32,'category','',0,0),(33,33,'category','',0,2),(34,34,'service-category','',0,6),(35,35,'category','',0,0),(36,36,'category','',0,1),(37,37,'category','',0,0),(38,38,'service-category','',0,6),(39,39,'case-study-category','',0,1),(40,40,'service-category','',0,0),(41,41,'case-study-category','',0,1),(42,42,'service-category','',0,6),(43,43,'case-study-category','',0,1),(44,44,'nav_menu','',0,16),(45,45,'case-study-category','',0,1),(46,46,'case-study-category','',0,1),(47,47,'wp_theme','',0,1),(48,48,'nav_menu','',0,3);
/*!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,
  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=49 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,'Business','business',0),(2,'Creative','creative',0),(3,'Strategy','strategy',0),(4,'Builder','builder',0),(5,'Cloud','cloud',0),(6,'Map','map',0),(7,'Tower','tower',0),(8,'Truck','truck',0),(9,'Business','business',0),(10,'Business','business',0),(11,'Coaching','coaching',0),(12,'Consulting','consulting',0),(13,'Facilitation','facilitation',0),(14,'Finance','finance',0),(15,'Financial','financial',0),(16,'page','page',0),(17,'section','section',0),(18,'Stakeholder relations','stakeholder-relations',0),(19,'Strategy','strategy',0),(20,'Strategy','strategy',0),(21,'Tax Management','tax-management',0),(22,'Main Menu','main-menu',0),(23,'Main Menu Left','main-menu-left',0),(24,'Main Menu Right','main-menu-right',0),(25,'Menu Courses','menu-courses',0),(26,'Menu Footer Links','menu-footer-links',0),(27,'Menu One Page','menu-one-page',0),(28,'Menu Secondary','menu-secondary',0),(29,'Menu Services','menu-services',0),(30,'Menu Support','menu-support',0),(31,'Business &amp; Strategy','business-strategy',0),(32,'Human Resorce','human-resorce',0),(33,'Tax &amp; Home Loan','tax-home-loan',0),(34,'Corporate','corporate',0),(35,'Builder','builder',0),(36,'Construction','construction',0),(37,'Tracking','tracking',0),(38,'Consultant','consultant',0),(39,'Investing','investing',0),(40,'Law','law',0),(41,'Marketing','marketing',0),(42,'Solutions','solutions',0),(43,'Sustainability','sustainability',0),(44,'Home Menu','home-menu',0),(45,'Ealoor','ealoor',0),(46,'Nursing','nursing',0),(47,'ealoor','ealoor',0),(48,'Quick Links','quick-links',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,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28 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','ealoor-admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:2:{s:64:\"1f5b69b53ca0922c2a0dba2bc9beeb432e13c19680bdca8e1e76bd414acf4212\";a:4:{s:10:\"expiration\";i:1648718296;s:2:\"ip\";s:39:\"2409:4073:2084:b113:f0db:bbd3:aea7:7698\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36\";s:5:\"login\";i:1648545496;}s:64:\"292fc5444f988b6d6ae7f655ff38253475f47f462587fc61536137a257d334ba\";a:4:{s:10:\"expiration\";i:1648719595;s:2:\"ip\";s:39:\"2409:4073:2084:b113:f0db:bbd3:aea7:7698\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36\";s:5:\"login\";i:1648546795;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','9036'),(18,1,'extendifysdk_uuid','42c5e44752dada3202125bd8edf00097'),(19,1,'extendifysdk_user_data','{\"state\":{\"firstLoadedOn\":\"2022-01-14T10:19:52.192Z\",\"email\":\"\",\"apiKey\":\"\",\"uuid\":\"42c5e44752dada3202125bd8edf00097\",\"sdkPartner\":\"Redux\",\"noticesDismissedAt\":[],\"modalNoticesDismissedAt\":[],\"imports\":0,\"runningImports\":0,\"allowedImports\":0,\"freebieImports\":0,\"entryPoint\":\"main-button\",\"enabled\":true,\"canInstallPlugins\":true,\"canActivatePlugins\":true,\"preferredOptions\":{\"taxonomies\":[],\"type\":\"\",\"search\":\"\"},\"preferredOptionsHistory\":{\"siteType\":[]},\"registration\":{\"email\":\"\",\"optedOut\":false},\"isAdmin\":true},\"version\":0}'),(20,1,'nav_menu_recently_edited','44'),(21,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\";}'),(22,1,'metaboxhidden_nav-menus','a:13:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:21:\"add-post-type-service\";i:2;s:24:\"add-post-type-case-study\";i:3;s:20:\"add-post-type-header\";i:4;s:20:\"add-post-type-footer\";i:5;s:28:\"add-post-type-e-landing-page\";i:6;s:17:\"add-post-type-mcw\";i:7;s:12:\"add-post_tag\";i:8;s:15:\"add-post_format\";i:9;s:22:\"add-portfolio-category\";i:10;s:20:\"add-service-category\";i:11;s:23:\"add-case-study-category\";i:12;s:27:\"add-booked_custom_calendars\";}'),(23,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(24,1,'wp_user-settings-time','1642427047'),(25,1,'community-events-location','a:1:{s:2:\"ip\";s:21:\"2409:4073:2084:b113::\";}'),(26,1,'closedpostboxes_post','a:0:{}'),(27,1,'metaboxhidden_post','a:0:{}');
/*!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,'ealoor-admin','$P$BXxICZdjLzJLKXS54VrwMIEvzJw4YJ/','ealoor-admin','sonus90@outlook.com','http://demoweblinks.in/ealoorconsultancy','2022-01-14 09:02:18','',0,'ealoor-admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2022-05-20  7:51:15
